summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2/desktop/gnome-icon-theme/default.nix
blob: 0f2a98c61f61c37639d588eab79ff8133fa8a2e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, pkgconfig, intltool, iconnamingutils, gtk2 }:

stdenv.mkDerivation rec {
  name = "gnome-icon-theme-2.91.93";

  src = fetchurl {
    #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";
  };

  nativeBuildInputs = [ pkgconfig intltool iconnamingutils gtk2 ];

  # remove a tree of dirs with no files within
  postInstall = '' rm -r "$out/share/locale" '';

  meta = {
    platforms = stdenv.lib.platforms.linux;
  };
}