From 80c3eceee0f3cb186753cdadeb2e728ecfb409a8 Mon Sep 17 00:00:00 2001 From: Nick Hu Date: Sun, 24 May 2020 13:19:05 +0100 Subject: [PATCH] redshift: enable appindicator support --- pkgs/applications/misc/redshift/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/misc/redshift/default.nix b/pkgs/applications/misc/redshift/default.nix index 43393478ec4..05dc4c429b6 100644 --- a/pkgs/applications/misc/redshift/default.nix +++ b/pkgs/applications/misc/redshift/default.nix @@ -9,6 +9,7 @@ , withGeolocation ? true , withCoreLocation ? withGeolocation && stdenv.isDarwin, CoreLocation, Foundation, Cocoa , withGeoclue ? withGeolocation && stdenv.isLinux, geoclue +, withAppIndicator ? true, libappindicator }: let @@ -50,6 +51,7 @@ let ++ stdenv.lib.optional withDrm libdrm ++ stdenv.lib.optional withQuartz ApplicationServices ++ stdenv.lib.optionals withCoreLocation [ CoreLocation Foundation Cocoa ] + ++ stdenv.lib.optional withAppIndicator libappindicator ; pythonPath = [ pygobject3 pyxdg ];