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

48 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch, xmlto, docbook_xml_dtd_412
2019-03-06 03:22:19 +03:00
, 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";
};
2019-03-06 03:22:19 +03:00
postPatch = ''
sed -i s,/usr/share/sgml/docbook/xml-dtd-4.1.2/,${docbook_xml_dtd_412}/xml/dtd/docbook/, \
docsrc/*.xml
'';
2019-03-06 03:22:19 +03:00
patches = [
(fetchpatch {
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/app-text/opensp/files/opensp-1.5.2-c11-using.patch?id=688d9675782dfc162d4e6cff04c668f7516118d0";
sha256 = "04q14s8qsad0bkjmj067dn831i0r6v7742rafdlnbfm5y249m2q6";
})
2014-08-21 06:30:50 +04:00
];
2019-03-06 03:22:19 +03:00
setupHook = ./setup-hook.sh;
2014-04-09 17:09:06 +04: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-24 02:50:44 +04:00
preConfigure = if stdenv.isCygwin then "autoreconf -fi" else null;
# need autoconf, automake, gettext, and libtool for reconfigure
2019-03-06 03:22:19 +03:00
nativeBuildInputs = stdenv.lib.optionals stdenv.isCygwin [ autoconf automake libtool ];
buildInputs = [ xmlto docbook_xml_dtd_412 libxslt docbook_xsl gettext libiconv ];
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;
};
}