mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 12:07:47 +03:00
redshift-plasma-applet: init at 1.0.17
This commit is contained in:
parent
b5957eaf2f
commit
962c4430ba
40
pkgs/applications/misc/redshift-plasma-applet/default.nix
Normal file
40
pkgs/applications/misc/redshift-plasma-applet/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user