nixpkgs/pkgs/desktops/xfce-4/core/gtk-xfce-engine.nix
Eelco Dolstra 093980344d * More Xfce stuff.
svn path=/nixpkgs/trunk/; revision=23067
2010-08-09 19:41:12 +00:00

20 lines
440 B
Nix

{ stdenv, fetchurl, pkgconfig, intltool, gtk }:
stdenv.mkDerivation rec {
name = "gtk-xfce-engine-2.6.0";
src = fetchurl {
url = "http://www.xfce.org/archive/xfce/4.6.2/src/${name}.tar.bz2";
sha1 = "a7be2f330833d150c5fb37f68a4c2138348b5446";
};
buildInputs =
[ pkgconfig intltool gtk ];
meta = {
homepage = http://www.xfce.org/;
description = "GTK+ theme engine for Xfce";
license = "GPLv2+";
};
}