gnome3: add gnome-icon-theme

This commit is contained in:
Vladimír Čunát 2013-02-21 20:38:47 +01:00
parent b8a44440e4
commit 51a413ac1c
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,12 @@
{ stdenv, fetchurl, pkgconfig, intltool, iconnamingutils, gtk }:
stdenv.mkDerivation rec {
name = "gnome-icon-theme-3.6.2";
src = fetchurl {
url = "mirror://gnome/sources/gnome-icon-theme/3.6/${name}.tar.xz";
sha256 = "0i8hkx2c1g5ckrvbkvs9n47i8fby8p9xs6p5l0mxdx9aq4smak9i";
};
nativeBuildInputs = [ pkgconfig intltool iconnamingutils gtk ];
}

View File

@ -19,6 +19,8 @@ rec {
gcr = callPackage ./core/gcr { }; # ToDo: tests fail
gnome_icon_theme = callPackage ./core/gnome-icon-theme { };
gnome_keyring = callPackage ./core/gnome-keyring { };
libgnome_keyring = callPackage ./core/libgnome-keyring { };