295990ca07
svn path=/nixpkgs/trunk/; revision=8171
15 lines
290 B
Nix
15 lines
290 B
Nix
{ input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser, python
|
|
, libxml2, libxslt, gettext
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
inherit (input) name src;
|
|
|
|
buildInputs = [
|
|
pkgconfig perl perlXMLParser python
|
|
libxml2 libxslt gettext
|
|
];
|
|
|
|
configureFlags = "--disable-scrollkeeper";
|
|
}
|