c6db5c80f9
svn path=/nixpkgs/trunk/; revision=8190
11 lines
221 B
Nix
11 lines
221 B
Nix
{ input, stdenv, fetchurl, gnome, pkgconfig, perl, perlXMLParser
|
|
, python, gettext
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
inherit (input) name src;
|
|
buildInputs = [
|
|
pkgconfig perl perlXMLParser gnome.glib python gettext
|
|
];
|
|
}
|