Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
38 lines
753 B
Nix
38 lines
753 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
opensp,
|
|
perl,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "openjade";
|
|
version = "1.3.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/openjade/openjade-${version}.tar.gz";
|
|
sha256 = "1l92sfvx1f0wmkbvzv1385y1gb3hh010xksi1iyviyclrjb7jb8x";
|
|
};
|
|
|
|
patches = [ ./msggen.patch ];
|
|
|
|
buildInputs = [
|
|
opensp
|
|
perl
|
|
];
|
|
|
|
configureFlags = [
|
|
"--enable-spincludedir=${opensp}/include/OpenSP"
|
|
"--enable-splibdir=${opensp}/lib"
|
|
];
|
|
|
|
meta = {
|
|
description = "Implementation of DSSSL, an ISO standard for formatting SGML (and XML) documents";
|
|
mainProgram = "openjade";
|
|
license = lib.licenses.mit;
|
|
homepage = "https://openjade.sourceforge.net/";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|