2021-01-16 18:14:13 -08:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, 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 {
|
2021-01-14 23:29:18 -08:00
|
|
|
url = "mirror://gnome/sources/gnome-icon-theme/${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
|
|
|
|
2020-04-03 18:30:26 -07:00
|
|
|
nativeBuildInputs = [
|
2021-01-16 18:14:13 -08:00
|
|
|
pkg-config
|
2020-04-03 18:30:26 -07:00
|
|
|
intltool
|
|
|
|
iconnamingutils
|
|
|
|
gtk2
|
|
|
|
];
|
2014-04-28 09:33:39 -07:00
|
|
|
|
2020-04-03 19:12:23 -07:00
|
|
|
dontDropIconThemeCache = true;
|
|
|
|
|
2020-04-03 18:30:26 -07:00
|
|
|
postInstall = ''
|
|
|
|
# remove a tree of dirs with no files within
|
|
|
|
rm -r "$out/share/locale"
|
|
|
|
'';
|
2015-07-28 07:39:36 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-04-03 18:27:57 -07:00
|
|
|
description = "Collection of icons for the GNOME 2 desktop";
|
|
|
|
homepage = "https://download.gnome.org/sources/gnome-icon-theme/";
|
|
|
|
license = licenses.gpl3Plus;
|
2020-04-03 18:28:54 -07:00
|
|
|
platforms = platforms.unix;
|
2020-04-03 18:27:57 -07:00
|
|
|
maintainers = [ maintainers.romildo ];
|
2014-04-28 09:33:39 -07:00
|
|
|
};
|
2009-11-04 13:44:01 -08:00
|
|
|
}
|