1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
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];
}