nixpkgs/pkgs/servers/http/tomcat/axis2/default.nix
Sander van der Burg 1c1ca49356 Upgrade to Axis2 1.4
svn path=/nixpkgs/trunk/; revision=12265
2008-07-05 12:42:51 +00:00

16 lines
286 B
Nix

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