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

21 lines
586 B
Nix
Raw Normal View History

{ stdenv, fetchurl, apacheAnt, jdk, unzip }:
stdenv.mkDerivation rec {
name = "axis2-${version}";
2019-08-10 01:24:53 -07:00
version = "1.7.9";
src = fetchurl {
url = "http://apache.proserve.nl/axis/axis2/java/core/${version}/${name}-bin.zip";
2019-08-10 01:24:53 -07:00
sha256 = "0dh0s9bfh95wmmw8nyf2yw95biq7d9zmrbg8k4vzcyz1if228lac";
};
buildInputs = [ unzip apacheAnt jdk ];
builder = ./builder.sh;
2014-06-22 13:38:27 -07:00
meta = {
description = "Web Services / SOAP / WSDL engine, the successor to the widely used Apache Axis SOAP stack";
platforms = stdenv.lib.platforms.unix;
2018-07-22 08:35:01 -07:00
license = stdenv.lib.licenses.asl20;
2014-06-22 13:38:27 -07:00
};
}