linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / text / sgml / openjade / default.nix
blob785ef3205967a0e25aa8bc79caf7da9f4509a2f7
1 { lib, stdenv, fetchurl, opensp, perl }:
3 stdenv.mkDerivation rec {
4   name = "openjade-1.3.2";
6   src = fetchurl {
7     url = "mirror://sourceforge/openjade/${name}.tar.gz";
8     sha256 = "1l92sfvx1f0wmkbvzv1385y1gb3hh010xksi1iyviyclrjb7jb8x";
9   };
11   patches = [ ./msggen.patch ];
13   buildInputs = [ opensp perl ];
15   configureFlags = [
16     "--enable-spincludedir=${opensp}/include/OpenSP"
17     "--enable-splibdir=${opensp}/lib"
18   ];
20   meta = {
21     description = "An implementation of DSSSL, an ISO standard for formatting SGML (and XML) documents";
22     license = lib.licenses.mit;
23     homepage = "http://openjade.sourceforge.net/";
24     platforms = lib.platforms.linux;
25   };