cygwin: opensp
This commit is contained in:
parent
2904aa33bb
commit
af5484a630
@ -1,4 +1,4 @@
|
|||||||
{ lib, stdenv, fetchurl, xmlto, docbook_xml_dtd_412, libxslt, docbook_xsl }:
|
{ lib, stdenv, fetchurl, xmlto, docbook_xml_dtd_412, libxslt, docbook_xsl, autoconf, automake, gettext, libiconv, libtool}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "opensp-1.5.2";
|
name = "opensp-1.5.2";
|
||||||
@ -26,7 +26,11 @@ stdenv.mkDerivation {
|
|||||||
sed -i -e 's/name="idm.*"//g' $out/share/doc/OpenSP/releasenotes.html
|
sed -i -e 's/name="idm.*"//g' $out/share/doc/OpenSP/releasenotes.html
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildInputs = [ xmlto docbook_xml_dtd_412 libxslt docbook_xsl ];
|
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 ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A suite of SGML/XML processing tools";
|
description = "A suite of SGML/XML processing tools";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user