summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Helgesson <robert@rycee.net>2018-03-05 18:41:53 +0100
committerRobert Helgesson <robert@rycee.net>2018-03-05 21:47:38 +0100
commitc7f40209c16fccd61480967561e0443dc67b41c9 (patch)
treea34e9b88c2269bdde6d8d31f3c994f7e2a187efa
parent0203ab2ff94661e676b878148a15be7a102ca8bd (diff)
downloadnixlib-c7f40209c16fccd61480967561e0443dc67b41c9.tar
nixlib-c7f40209c16fccd61480967561e0443dc67b41c9.tar.gz
nixlib-c7f40209c16fccd61480967561e0443dc67b41c9.tar.bz2
nixlib-c7f40209c16fccd61480967561e0443dc67b41c9.tar.lz
nixlib-c7f40209c16fccd61480967561e0443dc67b41c9.tar.xz
nixlib-c7f40209c16fccd61480967561e0443dc67b41c9.tar.zst
nixlib-c7f40209c16fccd61480967561e0443dc67b41c9.zip
xfce4-timer-plugin: 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.
-rw-r--r--pkgs/desktops/xfce/panel-plugins/xfce4-timer-plugin.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-timer-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-timer-plugin.nix
index 17dcb10c9d1e..5ec897904513 100644
--- a/pkgs/desktops/xfce/panel-plugins/xfce4-timer-plugin.nix
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-timer-plugin.nix
@@ -1,4 +1,5 @@
-{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel, libxfce4ui, libxfcegui4, xfconf, gtk}:
+{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel
+, libxfce4ui, libxfcegui4, xfconf, gtk, hicolor-icon-theme }:
 
 with stdenv.lib;
 stdenv.mkDerivation rec {
@@ -13,7 +14,7 @@ stdenv.mkDerivation rec {
   name = "${p_name}-${ver_maj}.${ver_min}";
 
   buildInputs = [ intltool libxfce4util libxfce4ui xfce4panel libxfcegui4 xfconf
-    gtk ];
+    gtk hicolor-icon-theme ];
 
   nativeBuildInputs = [ pkgconfig ];