e970236591
saxonb_8_8 is kept as default saxonb because the newer version is not a completely compatible replacement. https://www.saxonica.com/documentation/#!changes/xslt20/8.8-9.1
72 lines
2.1 KiB
Nix
72 lines
2.1 KiB
Nix
{ stdenv, fetchurl, unzip, jre }:
|
|
|
|
let
|
|
common = { pname, version, src, description
|
|
, prog ? null, jar ? null, license ? stdenv.lib.licenses.mpl20 }:
|
|
stdenv.mkDerivation {
|
|
name = "${pname}-${version}";
|
|
inherit pname version src;
|
|
|
|
nativeBuildInputs = [ unzip ];
|
|
|
|
buildCommand = let
|
|
prog' = if prog == null then pname else prog;
|
|
jar' = if jar == null then pname else jar;
|
|
in ''
|
|
unzip $src -d $out
|
|
mkdir -p $out/bin $out/share $out/share/java
|
|
cp -s "$out"/*.jar "$out/share/java/" # */
|
|
rm -rf $out/notices
|
|
mv $out/doc $out/share
|
|
cat > $out/bin/${prog'} <<EOF
|
|
#! $shell
|
|
export JAVA_HOME=${jre}
|
|
exec ${jre}/bin/java -jar $out/${jar'}.jar "\$@"
|
|
EOF
|
|
chmod a+x $out/bin/${prog'}
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
inherit description license;
|
|
homepage = http://saxon.sourceforge.net/;
|
|
maintainers = with maintainers; [ rvl ];
|
|
platforms = platforms.all;
|
|
};
|
|
};
|
|
|
|
in {
|
|
saxon = common {
|
|
pname = "saxon";
|
|
version = "6.5.3";
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/saxon/saxon6_5_3.zip;
|
|
sha256 = "0l5y3y2z4wqgh80f26dwwxwncs8v3nkz3nidv14z024lmk730vs3";
|
|
};
|
|
description = "XSLT 1.0 processor";
|
|
# http://saxon.sourceforge.net/saxon6.5.3/conditions.html
|
|
license = stdenv.lib.licenses.mpl10;
|
|
};
|
|
|
|
saxonb_8_8 = common {
|
|
pname = "saxonb";
|
|
version = "8.8";
|
|
jar = "saxon8";
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/saxon/saxonb8-8j.zip;
|
|
sha256 = "15bzrfyd2f1045rsp9dp4znyhmizh1pm97q8ji2bc0b43q23xsb8";
|
|
};
|
|
description = "Complete and conformant processor of XSLT 2.0, XQuery 1.0, and XPath 2.0";
|
|
};
|
|
|
|
saxonb_9_1 = common {
|
|
pname = "saxonb";
|
|
version = "9.1.0.8";
|
|
jar = "saxon9";
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/saxon/Saxon-B/9.1.0.8/saxonb9-1-0-8j.zip;
|
|
sha256 = "1d39jdnwr3v3pzswm81zry6yikqlqy9dp2l2wmpqdiw00r5drg4j";
|
|
};
|
|
description = "Complete and conformant processor of XSLT 2.0, XQuery 1.0, and XPath 2.0";
|
|
};
|
|
}
|