2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoconf, automake, gettext, intltool
|
2018-05-16 05:43:30 +01:00
|
|
|
, libtool, pkgconfig, wrapGAppsHook, wrapPython, gobjectIntrospection
|
|
|
|
, gtk3, python, pygobject3, hicolor-icon-theme, pyxdg
|
|
|
|
|
|
|
|
, withQuartz ? stdenv.isDarwin, ApplicationServices
|
|
|
|
, withRandr ? stdenv.isLinux, libxcb
|
|
|
|
, withDrm ? stdenv.isLinux, libdrm
|
2018-11-18 07:48:01 +00:00
|
|
|
|
|
|
|
, withGeolocation ? true
|
|
|
|
, withCoreLocation ? withGeolocation && stdenv.isDarwin, CoreLocation, Foundation, Cocoa
|
|
|
|
, withGeoclue ? withGeolocation && stdenv.isLinux, geoclue
|
|
|
|
}:
|
2011-01-24 23:52:22 +00:00
|
|
|
|
2016-01-25 19:08:34 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2013-10-26 18:15:57 +01:00
|
|
|
name = "redshift-${version}";
|
2018-05-23 03:44:57 +01:00
|
|
|
version = "1.12";
|
2016-01-25 19:08:34 +00:00
|
|
|
|
2018-01-16 13:44:59 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jonls";
|
|
|
|
repo = "redshift";
|
|
|
|
rev = "v${version}";
|
2018-05-23 03:44:57 +01:00
|
|
|
sha256 = "12cb4gaqkybp4bkkns8pam378izr2mwhr2iy04wkprs2v92j7bz6";
|
2011-01-24 23:52:22 +00:00
|
|
|
};
|
|
|
|
|
2018-01-16 13:44:59 +00:00
|
|
|
patches = [
|
|
|
|
# https://github.com/jonls/redshift/pull/575
|
|
|
|
./575.patch
|
|
|
|
];
|
2015-07-26 22:22:12 +01:00
|
|
|
|
2018-01-16 13:44:59 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoconf
|
|
|
|
automake
|
|
|
|
gettext
|
|
|
|
intltool
|
|
|
|
libtool
|
|
|
|
pkgconfig
|
|
|
|
wrapGAppsHook
|
|
|
|
wrapPython
|
2013-10-26 18:15:57 +01:00
|
|
|
];
|
|
|
|
|
2018-05-16 05:43:30 +01: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 13:44:59 +00:00
|
|
|
buildInputs = [
|
|
|
|
gobjectIntrospection
|
|
|
|
gtk3
|
|
|
|
python
|
2018-02-28 16:12:02 +00:00
|
|
|
hicolor-icon-theme
|
2018-05-16 05:43:30 +01: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 00:05:05 +00:00
|
|
|
|
2018-01-16 13:44:59 +00:00
|
|
|
pythonPath = [ pygobject3 pyxdg ];
|
2016-01-03 00:05:05 +00:00
|
|
|
|
2018-01-16 13:44:59 +00:00
|
|
|
preConfigure = "./bootstrap";
|
2018-03-01 04:34:42 +00:00
|
|
|
|
|
|
|
postFixup = "wrapPythonPrograms";
|
2018-01-16 13:44:59 +00:00
|
|
|
|
2018-08-09 15:17:43 +01: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 13:44:59 +00:00
|
|
|
enableParallelBuilding = true;
|
2015-07-26 22:22:12 +01:00
|
|
|
|
2013-11-03 00:03:45 +00:00
|
|
|
meta = with stdenv.lib; {
|
2018-01-16 13:44:59 +00:00
|
|
|
description = "Screen color temperature manager";
|
2018-01-16 16:18:06 +00: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 18:04:18 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2014-09-13 12:51:39 +01:00
|
|
|
homepage = http://jonls.dk/redshift;
|
2018-05-16 05:43:30 +01:00
|
|
|
platforms = platforms.unix;
|
2018-01-17 05:13:23 +00:00
|
|
|
maintainers = with maintainers; [ yegortimoshenko ];
|
2018-01-16 13:44:59 +00:00
|
|
|
};
|
2013-06-07 01:13:54 +01:00
|
|
|
}
|