2012-08-01 02:50:42 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, iconnamingutils, gtk }:
|
2009-11-04 13:44:01 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-08-01 02:50:42 -07:00
|
|
|
name = "gnome-icon-theme-2.91.93";
|
2012-03-08 07:37:23 -08:00
|
|
|
|
2009-11-04 13:44:01 -08:00
|
|
|
src = fetchurl {
|
2012-08-01 02:50:42 -07:00
|
|
|
#url = "mirror://gnome/sources/gnome-icon-theme/3.4/${name}.tar.xz";
|
|
|
|
url = "mirror://gnome/sources/gnome-icon-theme/2.91/${name}.tar.bz2";
|
|
|
|
sha256 = "cc7f15e54e2640697b58c26e74cc3f6ebadeb4ef6622bffe9c1e6874cc3478d6";
|
2009-11-04 13:44:01 -08:00
|
|
|
};
|
2014-04-28 09:33:39 -07:00
|
|
|
|
2012-12-28 10:20:09 -08:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool iconnamingutils gtk ];
|
2014-04-28 09:33:39 -07:00
|
|
|
|
2015-07-28 07:39:36 -07:00
|
|
|
# remove a tree of dirs with no files within
|
|
|
|
postInstall = '' rm -r "$out/share/locale" '';
|
|
|
|
|
2014-04-28 09:33:39 -07:00
|
|
|
meta = {
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
2009-11-04 13:44:01 -08:00
|
|
|
}
|