nixpkgs/pkgs/servers/http/tomcat/axis2/default.nix
Sander van der Burg 87c5470d94 Bumped Axis2 to 1.5.4. This subrelease finally seems to work properly again
svn path=/nixpkgs/trunk/; revision=25523
2011-01-12 15:56:05 +00:00

14 lines
349 B
Nix

{stdenv, fetchurl, apacheAnt, jdk, unzip}:
stdenv.mkDerivation {
name = "axis2-1.5.4";
src = fetchurl {
url = http://apache.mirror.easycolocate.nl/axis/axis2/java/core/1.5.4/axis2-1.5.4-bin.zip;
sha256 = "0mqnsj14g8aqmh3gjxgys6kwa7q8jkjgczb0hlcr4v2par0hdfng";
};
buildInputs = [ unzip apacheAnt jdk ];
builder = ./builder.sh;
}