summary refs log tree commit diff
path: root/pkgs/desktops
diff options
context:
space:
mode:
authorRobert Helgesson <robert@rycee.net>2018-03-05 18:40:01 +0100
committerRobert Helgesson <robert@rycee.net>2018-03-05 21:47:33 +0100
commit0203ab2ff94661e676b878148a15be7a102ca8bd (patch)
treefa61c5db96b822c8b39324154ef32f8c1526d832 /pkgs/desktops
parent53554bd9f7751081b45d5ad12dc593a906deecc4 (diff)
downloadnixpkgs-0203ab2ff94661e676b878148a15be7a102ca8bd.tar
nixpkgs-0203ab2ff94661e676b878148a15be7a102ca8bd.tar.gz
nixpkgs-0203ab2ff94661e676b878148a15be7a102ca8bd.tar.bz2
nixpkgs-0203ab2ff94661e676b878148a15be7a102ca8bd.tar.lz
nixpkgs-0203ab2ff94661e676b878148a15be7a102ca8bd.tar.xz
nixpkgs-0203ab2ff94661e676b878148a15be7a102ca8bd.tar.zst
nixpkgs-0203ab2ff94661e676b878148a15be7a102ca8bd.zip
parole: remove icon cache file from output
Adds hicolor-icon-theme as a build input to use its build hook to
clean up icon cache files.
Diffstat (limited to 'pkgs/desktops')
-rw-r--r--pkgs/desktops/xfce/applications/parole.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/desktops/xfce/applications/parole.nix b/pkgs/desktops/xfce/applications/parole.nix
index 3b27456d78a..3951c9deedc 100644
--- a/pkgs/desktops/xfce/applications/parole.nix
+++ b/pkgs/desktops/xfce/applications/parole.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchurl, makeWrapper, pkgconfig, intltool, gst_all_1
 , gtk, dbus-glib, libxfce4ui, libxfce4util, xfconf
-, taglib, libnotify
+, taglib, libnotify, hicolor-icon-theme
 , withGstPlugins ? true
 }:
 
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ pkgconfig intltool ];
 
   buildInputs = [
-    makeWrapper 
+    makeWrapper hicolor-icon-theme
     gtk dbus-glib libxfce4ui libxfce4util xfconf
     taglib libnotify
   ] ++ (with gst_all_1; [ gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly gst-libav]);