nixpkgs/pkgs/desktops/gnome/gnome-terminal.nix
Eelco Dolstra 7008d7bfd9 * Gnome terminal.
svn path=/nixpkgs/trunk/; revision=8172
2007-03-04 23:37:34 +00:00

19 lines
532 B
Nix

{ input, stdenv, fetchurl, gnome, pkgconfig, perl, perlXMLParser
, gettext, which, python, libxml2Python, libxslt
}:
# !!! should get rid of libxml2Python, see gnomedocutils
stdenv.mkDerivation {
inherit (input) name src;
buildInputs = [
pkgconfig perl perlXMLParser gnome.gtk gnome.GConf gnome.libglade
gnome.libgnomeui gnome.startupnotification gnome.gnomevfs gnome.vte
gnome.gnomedocutils gettext which gnome.scrollkeeper
python libxml2Python libxslt
];
configureFlags = "--disable-scrollkeeper";
}