nixpkgs/pkgs/desktops/xfce-4.6/core/gtk-xfce-engine.nix
Eelco Dolstra 1475781b19 * Rename xfce-4 to xfce-4.6 in preparation for Xfce 4.8.
svn path=/nixpkgs/trunk/; revision=28757
2011-08-22 17:40:07 +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+";
};
}