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