Merge pull request #144780 from SuperSandro2000/opensp

authored by Sandro and committed by GitHub 30cb0d70 f96b3d46

+9 -5
+9 -5
pkgs/tools/text/sgml/opensp/default.nix
··· 1 { lib, stdenv, fetchurl, fetchpatch, xmlto, docbook_xml_dtd_412 2 - , libxslt, docbook_xsl, autoconf, automake, gettext, libiconv, libtool}: 3 4 stdenv.mkDerivation rec { 5 pname = "opensp"; ··· 30 sed -i -e 's/name="idm.*"//g' $out/share/doc/OpenSP/releasenotes.html 31 ''; 32 33 - preConfigure = if stdenv.isCygwin then "autoreconf -fi" else null; 34 35 strictDeps = true; 36 ··· 42 43 doCheck = false; # fails 44 45 - meta = { 46 description = "A suite of SGML/XML processing tools"; 47 - license = lib.licenses.mit; 48 homepage = "http://openjade.sourceforge.net/"; 49 - platforms = lib.platforms.unix; 50 }; 51 }
··· 1 { lib, stdenv, fetchurl, fetchpatch, xmlto, docbook_xml_dtd_412 2 + , libxslt, docbook_xsl, autoconf, automake, gettext, libiconv, libtool 3 + }: 4 5 stdenv.mkDerivation rec { 6 pname = "opensp"; ··· 31 sed -i -e 's/name="idm.*"//g' $out/share/doc/OpenSP/releasenotes.html 32 ''; 33 34 + preConfigure = lib.optionalString stdenv.isCygwin '' 35 + autoreconf -fi 36 + ''; 37 38 strictDeps = true; 39 ··· 45 46 doCheck = false; # fails 47 48 + meta = with lib; { 49 description = "A suite of SGML/XML processing tools"; 50 + license = licenses.mit; 51 homepage = "http://openjade.sourceforge.net/"; 52 + platforms = platforms.unix; 53 + maintainers = with maintainers; [ ]; 54 }; 55 }