mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Added Saxon 8, an XQuery 1.0 and XSLT 2.0 processor implemented in Java.
svn path=/nixpkgs/trunk/; revision=1335
This commit is contained in:
parent
568efb4864
commit
a2f6474f4d
2 changed files with 17 additions and 0 deletions
13
pkgs/development/libraries/java/saxon/default8.nix
Normal file
13
pkgs/development/libraries/java/saxon/default8.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{stdenv, fetchurl, unzip}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "saxonb-8.0";
|
||||
builder = ./unzip-builder.sh;
|
||||
src = fetchurl {
|
||||
url = http://belnet.dl.sourceforge.net/sourceforge/saxon/saxonb8-0.zip;
|
||||
md5 = "d05fbd398847ef27b2d1d875bb5136ea";
|
||||
};
|
||||
|
||||
inherit unzip;
|
||||
buildInputs = [unzip];
|
||||
}
|
|
@ -302,6 +302,10 @@ rec {
|
|||
inherit fetchurl stdenv unzip;
|
||||
};
|
||||
|
||||
saxonb = (import ../development/libraries/java/saxon/default8.nix) {
|
||||
inherit fetchurl stdenv unzip;
|
||||
};
|
||||
|
||||
sharedobjects = (import ../development/libraries/java/shared-objects) {
|
||||
j2sdk = j2sdk15;
|
||||
inherit fetchurl stdenv;
|
||||
|
|
Loading…
Reference in a new issue