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

14 lines
283 B
Nix

{ input, stdenv, fetchurl, gnome, pkgconfig, perl, perlXMLParser
, ncurses, python, gettext
}:
stdenv.mkDerivation {
inherit (input) name src;
buildInputs = [
pkgconfig perl perlXMLParser gnome.glib gnome.gtk python gettext
];
propagatedBuildInputs = [ncurses];
}