* Gnome terminal.

svn path=/nixpkgs/trunk/; revision=8172
This commit is contained in:
Eelco Dolstra
2007-03-04 23:37:34 +00:00
parent 295990ca07
commit 7008d7bfd9
5 changed files with 53 additions and 3 deletions
+14 -1
View File
@@ -3,7 +3,8 @@
{ stdenv, fetchurl, pkgconfig, audiofile
, flex, bison, popt, perl, zlib, libxml2, libxslt
, perlXMLParser, docbook_xml_dtd_42, gettext, x11, libtiff, libjpeg
, libpng, gtkLibs, xlibs, bzip2, libcm, python, dbus_glib
, libpng, gtkLibs, xlibs, bzip2, libcm, python, dbus_glib, ncurses
, which, libxml2Python
}:
assert dbus_glib.glib == gtkLibs.glib;
@@ -211,6 +212,18 @@ rec {
gettext libxslt;
input = desktop.gconfeditor;
};
vte = import ./vte.nix {
inherit stdenv fetchurl pkgconfig gnome perl perlXMLParser ncurses
python gettext;
input = desktop.vte;
};
gnometerminal = import ./gnome-terminal.nix {
inherit stdenv fetchurl pkgconfig gnome perl perlXMLParser
gettext which python libxml2Python libxslt;
input = desktop.gnometerminal;
};
};