* Added pkgs/data/misc/hicolor-icon-theme, required by Xfce.

svn path=/nixpkgs/trunk/; revision=23060
This commit is contained in:
Eelco Dolstra
2010-08-09 18:00:08 +00:00
parent e875ec2524
commit 4ae72f5ab2
2 changed files with 19 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "hicolor-icon-theme-0.12";
src = fetchurl {
url = "http://icon-theme.freedesktop.org/releases/${name}.tar.gz";
sha256 = "0wzc7g4ldb2l8zc0x2785ck808c03i857jji942ikakyc68adp4y";
};
meta = {
description = "Default fallback theme used by implementations of the icon theme specification";
homepage = http://icon-theme.freedesktop.org/releases/;
};
}