nixpkgs/pkgs/desktops/xfce-4/art/xfce4-icon-theme.nix
Eelco Dolstra 153577d0f3 * Add GTK+ as a dependency to generate the icon cache.
svn path=/nixpkgs/trunk/; revision=23071
2010-08-09 21:14:08 +00:00

18 lines
415 B
Nix

{ stdenv, fetchurl, pkgconfig, intltool, gtk }:
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 gtk ];
meta = {
homepage = http://www.xfce.org/;
description = "Icons for Xfce";
};
}