From d612a9e132bbdbb50924569dd97ef3fa8bcb04c9 Mon Sep 17 00:00:00 2001 From: Raymond Gauthier Date: Tue, 30 Jun 2015 23:53:09 -0400 Subject: [PATCH] meld: fix for hicolor theme breakage This breakage was cause by the package outputing its own version of index.cache to `share/icons/hicolor`. Used the `hicolor_icon_theme` hook to perform automated cleanup. --- pkgs/applications/version-management/meld/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/version-management/meld/default.nix b/pkgs/applications/version-management/meld/default.nix index a892d7decc0..2a69d140669 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 ];