e60fe8673b
gnome28 was a mix of packages from various releases, so do not mention 2.28 in the attribute name. svn path=/nixpkgs/trunk/; revision=29721
19 lines
725 B
Nix
19 lines
725 B
Nix
{stdenv, fetchurl, pkgconfig, perl, perlXMLParser, libxml2, libxslt, docbook_xml_dtd_42, automake}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "scrollkeeper-0.3.14";
|
|
src = fetchurl {
|
|
url = mirror://gnome/sources/scrollkeeper/0.3/scrollkeeper-0.3.14.tar.bz2;
|
|
sha256 = "08n1xgj1f53zahwm0wpn3jid3rfbhi3iwby0ilaaldnid5qriqgc";
|
|
};
|
|
|
|
# The fuloong2f is not supported by scrollkeeper-0.3.14 config.guess
|
|
preConfigure = "
|
|
substituteInPlace extract/dtds/Makefile.am --replace /usr/bin/xmlcatalog xmlcatalog
|
|
cp ${automake}/share/automake*/config.{sub,guess} .
|
|
";
|
|
|
|
buildInputs = [pkgconfig perl perlXMLParser libxml2 libxslt];
|
|
configureFlags = "--with-xml-catalog=${docbook_xml_dtd_42}/xml/dtd/docbook/docbook.cat";
|
|
}
|