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