nixpkgs/pkgs/servers/http/tomcat/axis2/default.nix
Sander van der Burg b52c792004 Added Apache Axis2
svn path=/nixpkgs/trunk/; revision=10493
2008-02-04 12:24:41 +00:00

16 lines
286 B
Nix

{stdenv, fetchurl, apacheAnt, jdk, unzip}:
stdenv.mkDerivation {
name = "axis2-1.3";
builder = ./builder.sh;
src = fetchurl {
url = http://apache.hippo.nl/ws/axis2/1_3/axis2-1.3-bin.zip;
md5 = "ab2bc77452288ebf80d861270734a83e";
};
inherit apacheAnt jdk unzip;
}