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

21 lines
588 B
Nix
Raw Normal View History

{ stdenv, fetchurl, apacheAnt, jdk, unzip }:
stdenv.mkDerivation rec {
pname = "axis2";
2019-08-10 10:24:53 +02:00
version = "1.7.9";
src = fetchurl {
url = "http://apache.proserve.nl/axis/axis2/java/core/${version}/${pname}-${version}-bin.zip";
2019-08-10 10:24:53 +02:00
sha256 = "0dh0s9bfh95wmmw8nyf2yw95biq7d9zmrbg8k4vzcyz1if228lac";
};
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";
platforms = stdenv.lib.platforms.unix;
2018-07-22 17:35:01 +02:00
license = stdenv.lib.licenses.asl20;
2014-06-22 22:38:27 +02:00
};
}