2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, fetchFromGitHub, autoconf, automake, gettext, intltool
|
2018-12-02 12:41:15 +01:00
|
|
|
, libtool, pkgconfig, wrapGAppsHook, wrapPython, gobject-introspection
|
2018-05-16 06:43:30 +02:00
|
|
|
, gtk3, python, pygobject3, hicolor-icon-theme, pyxdg
|
|
|
|
|
|
|
|
, withQuartz ? stdenv.isDarwin, ApplicationServices
|
|
|
|
, withRandr ? stdenv.isLinux, libxcb
|
|
|
|
, withDrm ? stdenv.isLinux, libdrm
|
2018-11-18 08:48:01 +01:00
|
|
|
|
|
|
|
, withGeolocation ? true
|
|
|
|
, withCoreLocation ? withGeolocation && stdenv.isDarwin, CoreLocation, Foundation, Cocoa
|
|
|
|
, withGeoclue ? withGeolocation && stdenv.isLinux, geoclue
|
|
|
|
}:
|
2011-01-25 00:52:22 +01:00
|
|
|
|
2016-01-25 20:08:34 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "redshift";
|
2018-05-23 04:44:57 +02:00
|
|
|
version = "1.12";
|
2016-01-25 20:08:34 +01:00
|
|
|
|
2018-01-16 14:44:59 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jonls";
|
|
|
|
repo = "redshift";
|
|
|
|
rev = "v${version}";
|
2018-05-23 04:44:57 +02:00
|
|
|
sha256 = "12cb4gaqkybp4bkkns8pam378izr2mwhr2iy04wkprs2v92j7bz6";
|
2011-01-25 00:52:22 +01:00
|
|
|
};
|
|
|
|
|
2018-01-16 14:44:59 +01:00
|
|
|
patches = [
|
|
|
|
# https://github.com/jonls/redshift/pull/575
|
|
|
|
./575.patch
|
|
|
|
];
|
2015-07-26 23:22:12 +02:00
|
|
|
|
2018-01-16 14:44:59 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoconf
|
|
|
|
automake
|
|
|
|
gettext
|
|
|
|
intltool
|
|
|
|
libtool
|
|
|
|
pkgconfig
|
|
|
|
wrapGAppsHook
|
|
|
|
wrapPython
|
2013-10-26 19:15:57 +02:00
|
|
|
];
|
|
|
|
|
2018-05-16 06:43:30 +02:00
|
|
|
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"}"
|
|
|
|
];
|
|
|
|
|
2018-01-16 14:44:59 +01:00
|
|
|
buildInputs = [
|
2018-12-02 12:41:15 +01:00
|
|
|
gobject-introspection
|
2018-01-16 14:44:59 +01:00
|
|
|
gtk3
|
|
|
|
python
|
2018-02-28 17:12:02 +01:00
|
|
|
hicolor-icon-theme
|
2018-05-16 06:43:30 +02:00
|
|
|
] ++ 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 ]
|
|
|
|
;
|
2016-01-03 01:05:05 +01:00
|
|
|
|
2018-01-16 14:44:59 +01:00
|
|
|
pythonPath = [ pygobject3 pyxdg ];
|
2016-01-03 01:05:05 +01:00
|
|
|
|
2018-01-16 14:44:59 +01:00
|
|
|
preConfigure = "./bootstrap";
|
2018-03-01 05:34:42 +01:00
|
|
|
|
|
|
|
postFixup = "wrapPythonPrograms";
|
2018-01-16 14:44:59 +01:00
|
|
|
|
2018-08-09 16:17:43 +02:00
|
|
|
# the geoclue agent may inspect these paths and expect them to be
|
|
|
|
# valid without having the correct $PATH set
|
|
|
|
postInstall = ''
|
|
|
|
substituteInPlace $out/share/applications/redshift.desktop \
|
|
|
|
--replace 'Exec=redshift' "Exec=$out/bin/redshift"
|
|
|
|
substituteInPlace $out/share/applications/redshift.desktop \
|
|
|
|
--replace 'Exec=redshift-gtk' "Exec=$out/bin/redshift-gtk"
|
|
|
|
'';
|
|
|
|
|
2018-01-16 14:44:59 +01:00
|
|
|
enableParallelBuilding = true;
|
2015-07-26 23:22:12 +02:00
|
|
|
|
2013-11-03 01:03:45 +01:00
|
|
|
meta = with stdenv.lib; {
|
2018-01-16 14:44:59 +01:00
|
|
|
description = "Screen color temperature manager";
|
2018-01-16 17:18:06 +01:00
|
|
|
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.
|
|
|
|
'';
|
2015-07-02 19:04:18 +02:00
|
|
|
license = licenses.gpl3Plus;
|
2014-09-13 13:51:39 +02:00
|
|
|
homepage = http://jonls.dk/redshift;
|
2018-05-16 06:43:30 +02:00
|
|
|
platforms = platforms.unix;
|
2019-08-20 19:36:05 +02:00
|
|
|
maintainers = with maintainers; [ yegortimoshenko globin ];
|
2018-01-16 14:44:59 +01:00
|
|
|
};
|
2013-06-07 02:13:54 +02:00
|
|
|
}
|