about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2020-05-31 16:46:22 +0200
committerGitHub <noreply@github.com>2020-05-31 16:46:22 +0200
commitba6bc5fd229ad243746d6101ad4efeb88578a105 (patch)
tree5383afd6cc7b9caffe7dc077fdb9112b50455b23 /pkgs
parent414e1c63054ecf37fb66f9df66a9b098956e8895 (diff)
parent80c3eceee0f3cb186753cdadeb2e728ecfb409a8 (diff)
downloadnixlib-ba6bc5fd229ad243746d6101ad4efeb88578a105.tar
nixlib-ba6bc5fd229ad243746d6101ad4efeb88578a105.tar.gz
nixlib-ba6bc5fd229ad243746d6101ad4efeb88578a105.tar.bz2
nixlib-ba6bc5fd229ad243746d6101ad4efeb88578a105.tar.lz
nixlib-ba6bc5fd229ad243746d6101ad4efeb88578a105.tar.xz
nixlib-ba6bc5fd229ad243746d6101ad4efeb88578a105.tar.zst
nixlib-ba6bc5fd229ad243746d6101ad4efeb88578a105.zip
Merge pull request #88784 from NickHu/redshift
redshift: enable appindicator support
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/misc/redshift/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/misc/redshift/default.nix b/pkgs/applications/misc/redshift/default.nix
index 43393478ec4a..05dc4c429b61 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 ];