gnome3.adwaita-icon-theme: remove empty dir tree

Also similar for old gnome2 icon theme.
/cc maintainer @lethalman.
This commit is contained in:
Vladimír Čunát 2015-07-28 16:39:36 +02:00
parent 9e0dcf3bd9
commit 7c36b4611d
2 changed files with 7 additions and 1 deletions

View file

@ -11,6 +11,9 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig intltool iconnamingutils gtk ];
# remove a tree of dirs with no files within
postInstall = '' rm -r "$out/share/locale" '';
meta = {
platforms = stdenv.lib.platforms.linux;
};

View file

@ -13,9 +13,12 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ hicolor_icon_theme ];
buildInputs = [ gdk_pixbuf librsvg ];
nativeBuildInputs = [ pkgconfig intltool iconnamingutils gtk ];
# remove a tree of dirs with no files within
postInstall = '' rm -r "$out/locale" '';
meta = with stdenv.lib; {
platforms = platforms.linux;
maintainers = [ maintainers.lethalman ];