1 { lib, stdenv, fetchurl, opensp, perl }:
3 stdenv.mkDerivation rec {
8 url = "mirror://sourceforge/openjade/openjade-${version}.tar.gz";
9 sha256 = "1l92sfvx1f0wmkbvzv1385y1gb3hh010xksi1iyviyclrjb7jb8x";
12 patches = [ ./msggen.patch ];
14 buildInputs = [ opensp perl ];
17 "--enable-spincludedir=${opensp}/include/OpenSP"
18 "--enable-splibdir=${opensp}/lib"
22 description = "Implementation of DSSSL, an ISO standard for formatting SGML (and XML) documents";
23 mainProgram = "openjade";
24 license = lib.licenses.mit;
25 homepage = "https://openjade.sourceforge.net/";
26 platforms = lib.platforms.linux;