nixpkgs/pkgs/applications/window-managers/compiz/extra.nix
Eelco Dolstra e9178614a9 * Added feh to set the root image.
* Compiz extra plugins.

svn path=/nixpkgs/trunk/; revision=8178
2007-03-05 13:44:27 +00:00

17 lines
460 B
Nix

{ stdenv, fetchurl, pkgconfig, compiz, perl, perlXMLParser, GConf, dbus, gtk
}:
stdenv.mkDerivation {
name = "compiz-extra-20070305";
src = fetchurl {
url = http://gandalfn.club.fr/ubuntu/compiz-extra/compiz-extra-latest.tar.bz2;
sha256 = "1cm5cayhpnlhj0fhg8lqghdk52h9gmv4jv98zzadj3r3fd8mwr9z";
};
buildInputs = [
pkgconfig compiz perl perlXMLParser GConf dbus gtk
];
preBuild = "
makeFlagsArray=(moduledir=$out/lib/compiz)
";
}