From bb831b7946bb504fbeaf05fca8698598505d3e76 Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Tue, 15 May 2018 23:43:30 -0500 Subject: redshift: support macosx --- pkgs/applications/misc/redshift/default.nix | 30 ++++++++++++++++++++++------- 1 file changed, 23 insertions(+), 7 deletions(-) (limited to 'pkgs/applications') diff --git a/pkgs/applications/misc/redshift/default.nix b/pkgs/applications/misc/redshift/default.nix index b7ab092bbc04..dc31da671e95 100644 --- a/pkgs/applications/misc/redshift/default.nix +++ b/pkgs/applications/misc/redshift/default.nix @@ -1,6 +1,12 @@ { stdenv, fetchFromGitHub, fetchurl, autoconf, automake, gettext, intltool -, libtool, pkgconfig, wrapGAppsHook, wrapPython, geoclue2, gobjectIntrospection -, gtk3, python, pygobject3, pyxdg, libdrm, libxcb, hicolor-icon-theme }: +, 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}"; @@ -29,15 +35,25 @@ stdenv.mkDerivation rec { 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 = [ - geoclue2 gobjectIntrospection gtk3 - libdrm - libxcb 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 ]; @@ -59,7 +75,7 @@ stdenv.mkDerivation rec { ''; license = licenses.gpl3Plus; homepage = http://jonls.dk/redshift; - platforms = platforms.linux; + platforms = platforms.unix; maintainers = with maintainers; [ yegortimoshenko ]; }; } -- cgit 1.4.1