2019-03-03 13:30:31 -08:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, iconnamingutils, gtk2 }:
|
2009-11-04 13:44:01 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-04-03 18:12:12 -07:00
|
|
|
pname = "gnome-icon-theme";
|
|
|
|
version = "3.12.0";
|
2012-03-08 07:37:23 -08:00
|
|
|
|
2009-11-04 13:44:01 -08:00
|
|
|
src = fetchurl {
|
2020-04-03 18:12:12 -07:00
|
|
|
url = "mirror://gnome/sources/gnome-icon-theme/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-04-03 18:09:52 -07:00
|
|
|
sha256 = "0fjh9qmmgj34zlgxb09231ld7khys562qxbpsjlaplq2j85p57im";
|
2009-11-04 13:44:01 -08:00
|
|
|
};
|
2014-04-28 09:33:39 -07:00
|
|
|
|
2019-03-03 13:30:31 -08:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool iconnamingutils gtk2 ];
|
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
|
|
|
}
|