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:
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];
|
||||
}
|
||||
Reference in New Issue
Block a user