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:
Martin Bravenboer 2004-08-25 17:18:19 +00:00
parent 568efb4864
commit a2f6474f4d
2 changed files with 17 additions and 0 deletions

View 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];
}

View file

@ -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;