3
0
Fork 0
forked from mirrors/nixpkgs

Added Saxon 6, an XSLT 1.0 processor implemented in Java.

svn path=/nixpkgs/trunk/; revision=1334
This commit is contained in:
Martin Bravenboer 2004-08-25 17:11:52 +00:00
parent b6e5c1d7a5
commit 568efb4864
3 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{stdenv, fetchurl, unzip}:
stdenv.mkDerivation {
name = "saxon-6.5.3";
builder = ./unzip-builder.sh;
src = fetchurl {
url = http://belnet.dl.sourceforge.net/sourceforge/saxon/saxon6_5_3.zip;
md5 = "7b8c7c187473c04d2abdb40d8ddab5c6";
};
inherit unzip;
buildInputs = [unzip];
}

View file

@ -0,0 +1,3 @@
. $stdenv/setup
unzip $src -d $out

View file

@ -298,6 +298,10 @@ rec {
inherit fetchurl stdenv;
};
saxon = (import ../development/libraries/java/saxon) {
inherit fetchurl stdenv unzip;
};
sharedobjects = (import ../development/libraries/java/shared-objects) {
j2sdk = j2sdk15;
inherit fetchurl stdenv;