nixpkgs/pkgs/servers/http/tomcat/axis2/default.nix

18 lines
467 B
Nix
Raw Normal View History

{stdenv, fetchurl, apacheAnt, jdk, unzip}:
stdenv.mkDerivation {
2014-02-18 18:07:04 +01:00
name = "axis2-1.6.2";
src = fetchurl {
2014-04-25 01:32:23 +02:00
url = http://apache.proserve.nl/axis/axis2/java/core/1.6.2/axis2-1.6.2-bin.zip;
2014-02-18 18:07:04 +01:00
sha256 = "02i6fv11ksd5ql81i501bcb11ib5gyhq3zxwrz5jm4ic80r097fp";
};
buildInputs = [ unzip apacheAnt jdk ];
builder = ./builder.sh;
2014-06-22 22:38:27 +02:00
meta = {
description = "Web Services / SOAP / WSDL engine, the successor to the widely used Apache Axis SOAP stack";
};
}