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

21 lines
579 B
Nix
Raw Normal View History

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