svn path=/nixpkgs/trunk/; revision=23063
This commit is contained in:
Eelco Dolstra 2010-08-09 18:06:27 +00:00
parent 238e80f708
commit f0ae36e31c

View file

@ -0,0 +1,17 @@
{ stdenv, fetchurl, pkgconfig, intltool }:
stdenv.mkDerivation rec {
name = "xfce4-icon-theme-4.4.3";
src = fetchurl {
url = "http://www.xfce.org/archive/src/art/xfce4-icon-theme/4.4/${name}.tar.bz2";
sha1 = "0c0d0c45cd4a7f609310db8e9d17c1c4a131a6e7";
};
buildInputs = [ pkgconfig intltool ];
meta = {
homepage = http://www.xfce.org/;
description = "Icons for Xfce";
};
}