nixpkgs/pkgs/desktops/gnome-2/desktop/gnome-icon-theme/default.nix

21 lines
609 B
Nix
Raw Normal View History

2012-08-01 11:50:42 +02:00
{ stdenv, fetchurl, pkgconfig, intltool, iconnamingutils, gtk }:
stdenv.mkDerivation rec {
2012-08-01 11:50:42 +02:00
name = "gnome-icon-theme-2.91.93";
src = fetchurl {
2012-08-01 11:50:42 +02: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";
};
2014-04-28 18:33:39 +02:00
nativeBuildInputs = [ pkgconfig intltool iconnamingutils gtk ];
2014-04-28 18:33:39 +02:00
# remove a tree of dirs with no files within
postInstall = '' rm -r "$out/share/locale" '';
2014-04-28 18:33:39 +02:00
meta = {
platforms = stdenv.lib.platforms.linux;
};
}