82 lines
2.4 KiB
Nix
82 lines
2.4 KiB
Nix
{ stdenv, fetchFromGitHub, autoconf, automake, gettext, intltool
|
|
, libtool, pkgconfig, wrapGAppsHook, wrapPython, gobjectIntrospection
|
|
, gtk3, python, pygobject3, hicolor-icon-theme, pyxdg
|
|
|
|
, withCoreLocation ? stdenv.isDarwin, CoreLocation, Foundation, Cocoa
|
|
, withQuartz ? stdenv.isDarwin, ApplicationServices
|
|
, withRandr ? stdenv.isLinux, libxcb
|
|
, withDrm ? stdenv.isLinux, libdrm
|
|
, withGeoclue ? stdenv.isLinux, geoclue }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "redshift-${version}";
|
|
version = "1.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jonls";
|
|
repo = "redshift";
|
|
rev = "v${version}";
|
|
sha256 = "12cb4gaqkybp4bkkns8pam378izr2mwhr2iy04wkprs2v92j7bz6";
|
|
};
|
|
|
|
patches = [
|
|
# https://github.com/jonls/redshift/pull/575
|
|
./575.patch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
autoconf
|
|
automake
|
|
gettext
|
|
intltool
|
|
libtool
|
|
pkgconfig
|
|
wrapGAppsHook
|
|
wrapPython
|
|
];
|
|
|
|
configureFlags = [
|
|
"--enable-randr=${if withRandr then "yes" else "no"}"
|
|
"--enable-geoclue2=${if withGeoclue then "yes" else "no"}"
|
|
"--enable-drm=${if withDrm then "yes" else "no"}"
|
|
"--enable-quartz=${if withQuartz then "yes" else "no"}"
|
|
"--enable-corelocation=${if withCoreLocation then "yes" else "no"}"
|
|
];
|
|
|
|
buildInputs = [
|
|
gobjectIntrospection
|
|
gtk3
|
|
python
|
|
hicolor-icon-theme
|
|
] ++ stdenv.lib.optional withRandr libxcb
|
|
++ stdenv.lib.optional withGeoclue geoclue
|
|
++ stdenv.lib.optional withDrm libdrm
|
|
++ stdenv.lib.optional withQuartz ApplicationServices
|
|
++ stdenv.lib.optionals withCoreLocation [ CoreLocation Foundation Cocoa ]
|
|
;
|
|
|
|
pythonPath = [ pygobject3 pyxdg ];
|
|
|
|
preConfigure = "./bootstrap";
|
|
|
|
postFixup = "wrapPythonPrograms";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Screen color temperature manager";
|
|
longDescription = ''
|
|
Redshift adjusts the color temperature according to the position
|
|
of the sun. A different color temperature is set during night and
|
|
daytime. During twilight and early morning, the color temperature
|
|
transitions smoothly from night to daytime temperature to allow
|
|
your eyes to slowly adapt. At night the color temperature should
|
|
be set to match the lamps in your room.
|
|
'';
|
|
license = licenses.gpl3Plus;
|
|
homepage = http://jonls.dk/redshift;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ yegortimoshenko ];
|
|
};
|
|
}
|