saxonb_9_1: init at 9.1.0.8

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
This commit is contained in:
Rodney Lorrimar 2017-12-06 03:52:20 +00:00
parent d0cd7a0999
commit e970236591
2 changed files with 16 additions and 2 deletions

@ -47,7 +47,7 @@ in {
license = stdenv.lib.licenses.mpl10;
};
saxonb = common {
saxonb_8_8 = common {
pname = "saxonb";
version = "8.8";
jar = "saxon8";
@ -57,4 +57,15 @@ in {
};
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";
};
}

@ -11322,9 +11322,12 @@ with pkgs;
mockobjects = callPackage ../development/libraries/java/mockobjects { };
saxonb = saxonb_8_8;
inherit (callPackages ../development/libraries/java/saxon { })
saxon
saxonb;
saxonb_8_8
saxonb_9_1;
smack = callPackage ../development/libraries/java/smack { };