summary refs log tree commit diff
path: root/pkgs/applications/misc/redshift
diff options
context:
space:
mode:
authorYegor Timoshenko <yegortimoshenko@riseup.net>2018-02-28 20:13:42 +0000
committerGitHub <noreply@github.com>2018-02-28 20:13:42 +0000
commit275bc74aa9db358c38549442c50526d7c6736e67 (patch)
tree37893cbb76337440780f414764078e191a0a7996 /pkgs/applications/misc/redshift
parentedf0a762117c589eece24b5cbcef11f0ebcc9011 (diff)
parentbbf430700ad5d8df67d299c157cfaad2951267c9 (diff)
downloadnixpkgs-275bc74aa9db358c38549442c50526d7c6736e67.tar
nixpkgs-275bc74aa9db358c38549442c50526d7c6736e67.tar.gz
nixpkgs-275bc74aa9db358c38549442c50526d7c6736e67.tar.bz2
nixpkgs-275bc74aa9db358c38549442c50526d7c6736e67.tar.lz
nixpkgs-275bc74aa9db358c38549442c50526d7c6736e67.tar.xz
nixpkgs-275bc74aa9db358c38549442c50526d7c6736e67.tar.zst
nixpkgs-275bc74aa9db358c38549442c50526d7c6736e67.zip
Merge pull request #36137 from rardiol/hicolor
redshift, xarchiver: add hicolor-icon-theme to buildInputs
Diffstat (limited to 'pkgs/applications/misc/redshift')
-rw-r--r--pkgs/applications/misc/redshift/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/misc/redshift/default.nix b/pkgs/applications/misc/redshift/default.nix
index c0e481ae878..594886149c5 100644
--- a/pkgs/applications/misc/redshift/default.nix
+++ b/pkgs/applications/misc/redshift/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchFromGitHub, fetchurl, autoconf, automake, gettext, intltool
 , libtool, pkgconfig, wrapGAppsHook, wrapPython, geoclue2, gobjectIntrospection
-, gtk3, python, pygobject3, pyxdg, libdrm, libxcb }:
+, gtk3, python, pygobject3, pyxdg, libdrm, libxcb, hicolor-icon-theme }:
 
 stdenv.mkDerivation rec {
   name = "redshift-${version}";
@@ -36,6 +36,7 @@ stdenv.mkDerivation rec {
     libdrm
     libxcb
     python
+    hicolor-icon-theme
   ];
 
   pythonPath = [ pygobject3 pyxdg ];