2019-03-03 21:30:31 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, iconnamingutils, gtk2 }:
|
2009-11-04 21:44:01 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-04-04 02:12:12 +01:00
|
|
|
pname = "gnome-icon-theme";
|
|
|
|
version = "3.12.0";
|
2012-03-08 15:37:23 +00:00
|
|
|
|
2009-11-04 21:44:01 +00:00
|
|
|
src = fetchurl {
|
2020-04-04 02:12:12 +01:00
|
|
|
url = "mirror://gnome/sources/gnome-icon-theme/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-04-04 02:09:52 +01:00
|
|
|
sha256 = "0fjh9qmmgj34zlgxb09231ld7khys562qxbpsjlaplq2j85p57im";
|
2009-11-04 21:44:01 +00:00
|
|
|
};
|
2014-04-28 17:33:39 +01:00
|
|
|
|
2020-04-04 02:30:26 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
intltool
|
|
|
|
iconnamingutils
|
|
|
|
gtk2
|
|
|
|
];
|
2014-04-28 17:33:39 +01:00
|
|
|
|
2020-04-04 03:12:23 +01:00
|
|
|
dontDropIconThemeCache = true;
|
|
|
|
|
2020-04-04 02:30:26 +01:00
|
|
|
postInstall = ''
|
|
|
|
# remove a tree of dirs with no files within
|
|
|
|
rm -r "$out/share/locale"
|
|
|
|
'';
|
2015-07-28 15:39:36 +01:00
|
|
|
|
2020-04-04 02:27:57 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Collection of icons for the GNOME 2 desktop";
|
|
|
|
homepage = "https://download.gnome.org/sources/gnome-icon-theme/";
|
|
|
|
license = licenses.gpl3Plus;
|
2020-04-04 02:28:54 +01:00
|
|
|
platforms = platforms.unix;
|
2020-04-04 02:27:57 +01:00
|
|
|
maintainers = [ maintainers.romildo ];
|
2014-04-28 17:33:39 +01:00
|
|
|
};
|
2009-11-04 21:44:01 +00:00
|
|
|
}
|