redshift-plasma-applet: init at 1.0.17

This commit is contained in:
Benjamin Staffin 2017-02-05 18:13:06 -05:00
parent b5957eaf2f
commit 962c4430ba
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,40 @@
{ stdenv, cmake, kde5, redshift, fetchFromGitHub, ... }:
let version = "1.0.17"; in
stdenv.mkDerivation {
name = "redshift-plasma-applet-${version}";
src = fetchFromGitHub {
owner = "kotelnik";
repo = "plasma-applet-redshift-control";
rev = "v${version}";
sha256 = "1lp1rb7i6c18lrgqxsglbvyvzh71qbm591abrbhw675ii0ca9hgj";
};
patchPhase = ''
substituteInPlace package/contents/ui/main.qml \
--replace "redshiftCommand: 'redshift'" \
"redshiftCommand: '${redshift}/bin/redshift'" \
--replace "redshiftOneTimeCommand: 'redshift -O " \
"redshiftOneTimeCommand: '${redshift}/bin/redshift -O "
substituteInPlace package/contents/ui/config/ConfigAdvanced.qml \
--replace "'redshift -V'" \
"'${redshift}/bin/redshift -V'"
'';
buildInputs = [
cmake
kde5.plasma-framework
];
meta = with stdenv.lib; {
description = "KDE Plasma 5 widget for controlling Redshift";
homepage = https://github.com/kotelnik/plasma-applet-redshift-control;
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ benley ];
};
}

View File

@ -16766,6 +16766,8 @@ with pkgs;
inherit (python3Packages) python pygobject3 pyxdg;
};
redshift-plasma-applet = callPackage ../applications/misc/redshift-plasma-applet { };
orion = callPackage ../misc/themes/orion {};
albatross = callPackage ../misc/themes/albatross { };