7008d7bfd9
svn path=/nixpkgs/trunk/; revision=8172
17 lines
339 B
Nix
17 lines
339 B
Nix
{ input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser, python
|
|
, libxml2, libxslt, gettext
|
|
}:
|
|
|
|
# !!! xml2po needs to store the path to libxml2
|
|
|
|
stdenv.mkDerivation {
|
|
inherit (input) name src;
|
|
|
|
buildInputs = [
|
|
pkgconfig perl perlXMLParser python
|
|
libxml2 libxslt gettext
|
|
];
|
|
|
|
configureFlags = "--disable-scrollkeeper";
|
|
}
|