nixpkgs/pkgs/desktops/xfce-4.8/core/gtk-xfce-engine.nix
Eelco Dolstra d80391b7df * Add Xfce 4.8 to the channel.
svn path=/nixpkgs/trunk/; revision=29050
2011-09-05 23:30:26 +00:00

22 lines
546 B
Nix

{ stdenv, fetchurl, pkgconfig, intltool, gtk }:
stdenv.mkDerivation rec {
name = "gtk-xfce-engine-2.8.1";
src = fetchurl {
url = "http://archive.xfce.org/src/xfce/gtk-xfce-engine/2.8/${name}.tar.bz2";
sha1 = "d7779f07cc76585be063bc25fa91e660e1fd9c97";
};
buildInputs =
[ pkgconfig intltool gtk ];
meta = {
homepage = http://www.xfce.org/;
description = "GTK+ theme engine for Xfce";
license = "GPLv2+";
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.eelco ];
};
}