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];
|
||
|
}
|