summary refs log tree commit diff
path: root/pkgs/development/libraries/java
diff options
context:
space:
mode:
authorRodney Lorrimar <dev@rodney.id.au>2017-12-06 03:52:20 +0000
committerRodney Lorrimar <dev@rodney.id.au>2017-12-06 03:52:20 +0000
commite9702365917d834639461b73dad206e2cb5fa396 (patch)
treebad89228e45e248a39a67ba80fd1fdb3f30ce20d /pkgs/development/libraries/java
parentd0cd7a09992c5e7c873632e5dd984e406cb9ae51 (diff)
downloadnixpkgs-e9702365917d834639461b73dad206e2cb5fa396.tar
nixpkgs-e9702365917d834639461b73dad206e2cb5fa396.tar.gz
nixpkgs-e9702365917d834639461b73dad206e2cb5fa396.tar.bz2
nixpkgs-e9702365917d834639461b73dad206e2cb5fa396.tar.lz
nixpkgs-e9702365917d834639461b73dad206e2cb5fa396.tar.xz
nixpkgs-e9702365917d834639461b73dad206e2cb5fa396.tar.zst
nixpkgs-e9702365917d834639461b73dad206e2cb5fa396.zip
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
Diffstat (limited to 'pkgs/development/libraries/java')
-rw-r--r--pkgs/development/libraries/java/saxon/default.nix13
1 files changed, 12 insertions, 1 deletions
diff --git a/pkgs/development/libraries/java/saxon/default.nix b/pkgs/development/libraries/java/saxon/default.nix
index 15a89761340..65eebfc7d61 100644
--- a/pkgs/development/libraries/java/saxon/default.nix
+++ b/pkgs/development/libraries/java/saxon/default.nix
@@ -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";
+  };
 }