nixpkgs/pkgs/tools/misc/xflux/gui.nix

48 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, pythonPackages
, gnome_python
, libappindicator-gtk2, xflux, librsvg, wrapGAppsHook
2016-05-22 07:14:49 +03:00
}:
pythonPackages.buildPythonApplication rec {
2016-05-22 07:14:49 +03:00
name = "xflux-gui-${version}";
version = "2016-09-21";
2016-05-22 07:14:49 +03:00
src = fetchFromGitHub {
repo = "xflux-gui";
owner = "xflux-gui";
rev = "0b56204477494b473a390e8b0db043437ec14f32";
sha256 = "15pr8f31jnhqjlpvasnj6cmm6hw5gljphh2pxzav3zd9bp4yl56r";
2016-05-22 07:14:49 +03:00
};
propagatedBuildInputs = with pythonPackages; [
2016-05-22 07:14:49 +03:00
pexpect
pyGtkGlade
pygobject2
2016-05-22 07:14:49 +03:00
pyxdg
libappindicator-gtk2
2016-05-22 07:14:49 +03:00
gnome_python
];
buildInputs = [ xflux librsvg ];
nativeBuildInputs = [ wrapGAppsHook ];
2016-05-22 07:14:49 +03:00
postPatch = ''
substituteInPlace src/fluxgui/xfluxcontroller.py --replace "pexpect.spawn(\"xflux\"" "pexpect.spawn(\"${xflux}/bin/xflux\""
'';
postFixup = ''
wrapGAppsHook
makeWrapperArgs="''${gappsWrapperArgs[@]}"
wrapPythonPrograms
patchPythonScript $out/${pythonPackages.python.sitePackages}/fluxgui/fluxapp.py
2016-05-22 07:14:49 +03:00
'';
meta = {
description = "Better lighting for Linux. Open source GUI for xflux";
homepage = https://justgetflux.com/linux.html;
license = stdenv.lib.licenses.unfree; # marked as unfree since the source code contains a copy of the unfree xflux binary
maintainers = [ stdenv.lib.maintainers.sheenobu ];
platforms = stdenv.lib.platforms.linux;
};
}