7008d7bfd9
svn path=/nixpkgs/trunk/; revision=8172
14 lines
283 B
Nix
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];
|
|
}
|