summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.16/core/adwaita-icon-theme/default.nix
blob: a445ff73608b989553033d7acd21cfd18109394a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, pkgconfig, intltool, gnome3
, iconnamingutils, gtk, gdk_pixbuf, librsvg, hicolor_icon_theme }:

stdenv.mkDerivation rec {
  name = "adwaita-icon-theme-${gnome3.version}.0";

  src = fetchurl {
    url = "mirror://gnome/sources/adwaita-icon-theme/${gnome3.version}/${name}.tar.xz";
    sha256 = "a3c8ad3b099ca571b423811a20ee9a7a43498cfa04d299719ee43cd7af6f6eb1";
  };

  # For convenience, we can specify adwaita-icon-theme only in packages
  propagatedBuildInputs = [ hicolor_icon_theme ];

  buildInputs = [ gdk_pixbuf librsvg ];
  
  nativeBuildInputs = [ pkgconfig intltool iconnamingutils gtk ];

  meta = with stdenv.lib; {
    platforms = platforms.linux;
    maintainers = [ maintainers.lethalman ];
  };
}