nixpkgs/pkgs/desktops/gnome/metacity.nix
Eelco Dolstra eb1592a45d * Added metacity, a better window manager than twm ;-)
svn path=/nixpkgs/trunk/; revision=8112
2007-02-28 17:30:50 +00:00

14 lines
375 B
Nix

{ input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser, glib, gtk
, GConf, startupnotification, libXinerama, libXrandr, libXcursor
, gettext
}:
stdenv.mkDerivation {
inherit (input) name src;
buildInputs = [
pkgconfig perl perlXMLParser glib gtk GConf startupnotification
libXinerama libXrandr libXcursor gettext
];
#configureFlags = "--disable-gconf";
}