2007-03-04 22:28:24 +01:00
|
|
|
{ input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser, python
|
|
|
|
, libxml2, libxslt, gettext
|
|
|
|
}:
|
|
|
|
|
2007-03-05 00:37:34 +01:00
|
|
|
# !!! xml2po needs to store the path to libxml2
|
|
|
|
|
2007-03-04 22:28:24 +01:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit (input) name src;
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
pkgconfig perl perlXMLParser python
|
|
|
|
libxml2 libxslt gettext
|
|
|
|
];
|
|
|
|
|
|
|
|
configureFlags = "--disable-scrollkeeper";
|
|
|
|
}
|