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

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

  src = fetchurl {
    url = "mirror://gnome/sources/gnome-icon-theme/3.12/${name}.tar.xz";
    sha256 = "0fjh9qmmgj34zlgxb09231ld7khys562qxbpsjlaplq2j85p57im";
  };

  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;
  };
}