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

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 = "359e720b9202d3aba8d477752c4cd11eced368182281d51ffd64c8572b4e503a";
  };

  nativeBuildInputs = [ pkgconfig intltool iconnamingutils gtk ];

  propagatedBuildInputs = [ hicolor_icon_theme ];

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