about summary refs log tree commit diff
diff options
context:
space:
mode:
authorlethalman <lucabru@src.gnome.org>2015-07-01 10:12:32 +0200
committerlethalman <lucabru@src.gnome.org>2015-07-01 10:12:32 +0200
commitd50969b66e9cf9ca9cb587c2e5028d12db3df4d8 (patch)
tree4b4187199294c866513b8ad9b7a3e96224e2f9e3
parent98eebe7ee4f7a21038033f54317f1b9fca6710b4 (diff)
parentd612a9e132bbdbb50924569dd97ef3fa8bcb04c9 (diff)
downloadnixlib-d50969b66e9cf9ca9cb587c2e5028d12db3df4d8.tar
nixlib-d50969b66e9cf9ca9cb587c2e5028d12db3df4d8.tar.gz
nixlib-d50969b66e9cf9ca9cb587c2e5028d12db3df4d8.tar.bz2
nixlib-d50969b66e9cf9ca9cb587c2e5028d12db3df4d8.tar.lz
nixlib-d50969b66e9cf9ca9cb587c2e5028d12db3df4d8.tar.xz
nixlib-d50969b66e9cf9ca9cb587c2e5028d12db3df4d8.tar.zst
nixlib-d50969b66e9cf9ca9cb587c2e5028d12db3df4d8.zip
Merge pull request #8580 from jraygauthier/jrg/fix_meld_hicolor_icon_breakage
Fix meld package that broke the hicolor icon theme.
-rw-r--r--pkgs/applications/version-management/meld/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/version-management/meld/default.nix b/pkgs/applications/version-management/meld/default.nix
index a892d7decc07..2a69d1406699 100644
--- a/pkgs/applications/version-management/meld/default.nix
+++ b/pkgs/applications/version-management/meld/default.nix
@@ -1,5 +1,6 @@
 { stdenv, fetchurl, itstool, buildPythonPackage, python27, intltool, makeWrapper
 , libxml2, pygobject3, gobjectIntrospection, gtk3, gnome3, pycairo, cairo
+, hicolor_icon_theme
 }:
 
 
@@ -20,6 +21,7 @@ buildPythonPackage rec {
   buildInputs = [
     python27 intltool makeWrapper itstool libxml2
     gnome3.gtksourceview gnome3.gsettings_desktop_schemas pycairo cairo
+    hicolor_icon_theme
   ];
   propagatedBuildInputs = [ gobjectIntrospection pygobject3 gtk3 ];