Merge pull request #68285 from rileyinman/redshift-wlr
redshift-wlr: Init at 2019-04-17
This commit is contained in:
commit
93e6dcb398
@ -11,16 +11,11 @@
|
|||||||
, withGeoclue ? withGeolocation && stdenv.isLinux, geoclue
|
, withGeoclue ? withGeolocation && stdenv.isLinux, geoclue
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
mkRedshift =
|
||||||
|
{ pname, version, src, meta }:
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "redshift";
|
inherit pname version src meta;
|
||||||
version = "1.12";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "jonls";
|
|
||||||
repo = "redshift";
|
|
||||||
rev = "v${version}";
|
|
||||||
sha256 = "12cb4gaqkybp4bkkns8pam378izr2mwhr2iy04wkprs2v92j7bz6";
|
|
||||||
};
|
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
# https://github.com/jonls/redshift/pull/575
|
# https://github.com/jonls/redshift/pull/575
|
||||||
@ -73,6 +68,19 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
};
|
||||||
|
in
|
||||||
|
rec {
|
||||||
|
redshift = mkRedshift rec {
|
||||||
|
pname = "redshift";
|
||||||
|
version = "1.12";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jonls";
|
||||||
|
repo = "redshift";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "12cb4gaqkybp4bkkns8pam378izr2mwhr2iy04wkprs2v92j7bz6";
|
||||||
|
};
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Screen color temperature manager";
|
description = "Screen color temperature manager";
|
||||||
@ -89,4 +97,22 @@ stdenv.mkDerivation rec {
|
|||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = with maintainers; [ yegortimoshenko globin ];
|
maintainers = with maintainers; [ yegortimoshenko globin ];
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
redshift-wlr = mkRedshift {
|
||||||
|
pname = "redshift-wlr";
|
||||||
|
version = "2019-04-17";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "minus7";
|
||||||
|
repo = "redshift";
|
||||||
|
rev = "eecbfedac48f827e96ad5e151de8f41f6cd3af66";
|
||||||
|
sha256 = "0rs9bxxrw4wscf4a8yl776a8g880m5gcm75q06yx2cn3lw2b7v22";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = redshift.meta // {
|
||||||
|
description = redshift.meta.description + "(with wlroots patches)";
|
||||||
|
homepage = https://github.com/minus7/redshift;
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
@ -23373,11 +23373,11 @@ in
|
|||||||
|
|
||||||
plasma-applet-volumewin7mixer = libsForQt5.callPackage ../applications/misc/plasma-applet-volumewin7mixer { };
|
plasma-applet-volumewin7mixer = libsForQt5.callPackage ../applications/misc/plasma-applet-volumewin7mixer { };
|
||||||
|
|
||||||
redshift = callPackage ../applications/misc/redshift {
|
inherit (callPackages ../applications/misc/redshift {
|
||||||
inherit (python3Packages) python pygobject3 pyxdg wrapPython;
|
inherit (python3Packages) python pygobject3 pyxdg wrapPython;
|
||||||
inherit (darwin.apple_sdk.frameworks) CoreLocation ApplicationServices Foundation Cocoa;
|
inherit (darwin.apple_sdk.frameworks) CoreLocation ApplicationServices Foundation Cocoa;
|
||||||
geoclue = geoclue2;
|
geoclue = geoclue2;
|
||||||
};
|
}) redshift redshift-wlr;
|
||||||
|
|
||||||
redshift-plasma-applet = libsForQt5.callPackage ../applications/misc/redshift-plasma-applet { };
|
redshift-plasma-applet = libsForQt5.callPackage ../applications/misc/redshift-plasma-applet { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user