nixpkgs/pkgs/tools/text/sgml/openjade/default.nix

26 lines
639 B
Nix
Raw Normal View History

2013-01-28 17:04:52 +00:00
{ stdenv, fetchurl, opensp, perl }:
2013-01-28 17:04:52 +00:00
stdenv.mkDerivation rec {
name = "openjade-1.3.2";
src = fetchurl {
2013-01-28 17:04:52 +00:00
url = "mirror://sourceforge/openjade/${name}.tar.gz";
sha256 = "1l92sfvx1f0wmkbvzv1385y1gb3hh010xksi1iyviyclrjb7jb8x";
};
2014-08-21 14:24:45 +00:00
patches = [ ./msggen.patch ];
2013-01-28 17:04:52 +00:00
buildInputs = [ opensp perl ];
configureFlags = [
"--enable-spincludedir=${opensp}/include/OpenSP"
"--enable-splibdir=${opensp}/lib"
2013-01-28 17:04:52 +00:00
];
meta = {
description = "An implementation of DSSSL, an ISO standard for formatting SGML (and XML) documents";
license = stdenv.lib.licenses.mit;
homepage = http://openjade.sourceforge.net/;
};
}