summary refs log tree commit diff
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
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
-rw-r--r--pkgs/applications/misc/redshift/default.nix3
-rw-r--r--pkgs/tools/archivers/xarchiver/default.nix4
2 files changed, 4 insertions, 3 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 ];
diff --git a/pkgs/tools/archivers/xarchiver/default.nix b/pkgs/tools/archivers/xarchiver/default.nix
index 1c8d8367793..189035a8c8b 100644
--- a/pkgs/tools/archivers/xarchiver/default.nix
+++ b/pkgs/tools/archivers/xarchiver/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, gtk3, pkgconfig, intltool, libxslt }:
+{ stdenv, fetchFromGitHub, gtk3, pkgconfig, intltool, libxslt, hicolor-icon-theme }:
 
 stdenv.mkDerivation rec {
   version = "0.5.4.12";
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
   };
 
   nativeBuildInputs = [ pkgconfig ];
-  buildInputs = [ gtk3 intltool libxslt ];
+  buildInputs = [ gtk3 intltool libxslt hicolor-icon-theme ];
 
   meta = {
     description = "GTK+ frontend to 7z,zip,rar,tar,bzip2, gzip,arj, lha, rpm and deb (open and extract only)";