about summary refs log tree commit diff
path: root/pkgs/tools/text/sgml
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-11-07 00:41:00 +0100
committerGitHub <noreply@github.com>2021-11-07 00:41:00 +0100
commit30cb0d70ef72fd4540defcbf09e2432f9ec111e2 (patch)
tree22d9d34327b466dab325fde5b5342e24dafb1292 /pkgs/tools/text/sgml
parentf96b3d468efe1496db623f1b106613c8fd6fc0ad (diff)
parent2689de0cc66321471945f47275f4a0ce7c55b444 (diff)
Merge pull request #144780 from SuperSandro2000/opensp
Diffstat (limited to 'pkgs/tools/text/sgml')
-rw-r--r--pkgs/tools/text/sgml/opensp/default.nix14
1 files changed, 9 insertions, 5 deletions
diff --git a/pkgs/tools/text/sgml/opensp/default.nix b/pkgs/tools/text/sgml/opensp/default.nix
index a2ad5e4993bb0..d55afbc5dd9b5 100644
--- a/pkgs/tools/text/sgml/opensp/default.nix
+++ b/pkgs/tools/text/sgml/opensp/default.nix
@@ -1,5 +1,6 @@
 { lib, stdenv, fetchurl, fetchpatch, xmlto, docbook_xml_dtd_412
-, libxslt, docbook_xsl, autoconf, automake, gettext, libiconv, libtool}:
+, libxslt, docbook_xsl, autoconf, automake, gettext, libiconv, libtool
+}:
 
 stdenv.mkDerivation rec {
   pname = "opensp";
@@ -30,7 +31,9 @@ stdenv.mkDerivation rec {
     sed -i -e 's/name="idm.*"//g' $out/share/doc/OpenSP/releasenotes.html
     '';
 
-  preConfigure = if stdenv.isCygwin then "autoreconf -fi" else null;
+  preConfigure = lib.optionalString stdenv.isCygwin ''
+    autoreconf -fi
+  '';
 
   strictDeps = true;
 
@@ -42,10 +45,11 @@ stdenv.mkDerivation rec {
 
   doCheck = false; # fails
 
-  meta = {
+  meta = with lib; {
     description = "A suite of SGML/XML processing tools";
-    license = lib.licenses.mit;
+    license = licenses.mit;
     homepage = "http://openjade.sourceforge.net/";
-    platforms = lib.platforms.unix;
+    platforms = platforms.unix;
+    maintainers = with maintainers; [ ];
   };
 }