Added Xalan-Java 2.7.0 (binary).

svn path=/nixpkgs/trunk/; revision=5212
This commit is contained in:
Roy van den Broek 2006-04-25 13:12:45 +00:00
parent 6860ccf4b9
commit fd2d743748
3 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,5 @@
source $stdenv/setup
unpackPhase
mkdir -p $out
cp -r $directory/* $out

View file

@ -0,0 +1,14 @@
{stdenv, fetchurl}:
/*
This is a binary package containing the jars... yuck!
*/
stdenv.mkDerivation {
name = "xalanj-2.7.0";
directory = "xalan-j_2_7_0";
src = fetchurl {
url = "http://apache.cs.uu.nl/dist/xml/xalan-j/xalan-j_2_7_0-bin-2jars.tar.gz";
md5 = "4d7b03dcaf2484b5f9685cc4309a9910";
};
builder = ./builder.sh;
}

View file

@ -1416,6 +1416,10 @@ rec {
inherit (xlibs) libXtst;
};
xalanj = import ../development/libraries/java/xalanj {
inherit stdenv fetchurl;
};
### DEVELOPMENT / LIBRARIES / HASKELL
uulib = import ../development/libraries/haskell/uulib {