summary refs log tree commit diff
path: root/pkgs/tools/archivers/xarchiver
diff options
context:
space:
mode:
authorRicardo Ardissone <ricardo.ardissone@gmail.com>2018-02-28 13:18:37 -0300
committerRicardo Ardissone <ricardo.ardissone@gmail.com>2018-02-28 16:56:27 -0300
commitbbf430700ad5d8df67d299c157cfaad2951267c9 (patch)
treeec32f3a2cfcac3177a11b0da42ff77a74e35af82 /pkgs/tools/archivers/xarchiver
parent2ebceb5dad17ad7ba6c2779d61183d85b386d6f8 (diff)
downloadnixpkgs-bbf430700ad5d8df67d299c157cfaad2951267c9.tar
nixpkgs-bbf430700ad5d8df67d299c157cfaad2951267c9.tar.gz
nixpkgs-bbf430700ad5d8df67d299c157cfaad2951267c9.tar.bz2
nixpkgs-bbf430700ad5d8df67d299c157cfaad2951267c9.tar.lz
nixpkgs-bbf430700ad5d8df67d299c157cfaad2951267c9.tar.xz
nixpkgs-bbf430700ad5d8df67d299c157cfaad2951267c9.tar.zst
nixpkgs-bbf430700ad5d8df67d299c157cfaad2951267c9.zip
xarchiver: depend on hicolor_icon_theme
Diffstat (limited to 'pkgs/tools/archivers/xarchiver')
-rw-r--r--pkgs/tools/archivers/xarchiver/default.nix4
1 files changed, 2 insertions, 2 deletions
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)";