nixpkgs/pkgs/tools/text/sgml/opensp/default.nix

44 lines
1.3 KiB
Nix
Raw Normal View History

2014-10-23 23:50:44 +01:00
{ lib, stdenv, fetchurl, xmlto, docbook_xml_dtd_412, libxslt, docbook_xsl, autoconf, automake, gettext, libiconv, libtool}:
stdenv.mkDerivation {
name = "opensp-1.5.2";
src = fetchurl {
url = mirror://sourceforge/openjade/OpenSP-1.5.2.tar.gz;
sha256 = "1khpasr6l0a8nfz6kcf3s81vgdab8fm2dj291n5r2s53k228kx2p";
};
patchPhase = ''
sed -i s,/usr/share/sgml/docbook/xml-dtd-4.1.2/,${docbook_xml_dtd_412}/xml/dtd/docbook/, \
docsrc/*.xml
'';
2014-09-29 23:51:00 +01:00
configureFlags = lib.optional stdenv.isDarwin [
2014-08-21 03:30:50 +01:00
"--with-libintl-prefix=/usr"
"--with-libiconv-prefix=/usr"
];
2014-04-09 14:09:06 +01:00
setupHook = ./setup-hook.sh;
2014-04-09 14:09:06 +01:00
postFixup = ''
# Remove random ids in the release notes
sed -i -e 's/href="#idm.*"//g' $out/share/doc/OpenSP/releasenotes.html
sed -i -e 's/name="idm.*"//g' $out/share/doc/OpenSP/releasenotes.html
'';
2014-10-23 23:50:44 +01:00
preConfigure = if stdenv.isCygwin then "autoreconf -fi" else null;
# need autoconf, automake, gettext, and libtool for reconfigure
buildInputs = stdenv.lib.optionals stdenv.isCygwin [ autoconf automake gettext libiconv libtool ]
++ [ xmlto docbook_xml_dtd_412 libxslt docbook_xsl ];
doCheck = false; # fails
meta = {
description = "A suite of SGML/XML processing tools";
license = stdenv.lib.licenses.mit;
homepage = http://openjade.sourceforge.net/;
platforms = stdenv.lib.platforms.unix;
};
}