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

21 lines
579 B
Nix
Raw Normal View History

2021-01-14 23:07:56 -08:00
{ lib, stdenv, fetchurl, apacheAnt, jdk, unzip }:
stdenv.mkDerivation rec {
pname = "axis2";
2019-08-10 01:24:53 -07:00
version = "1.7.9";
src = fetchurl {
url = "http://apache.proserve.nl/axis/axis2/java/core/${version}/${pname}-${version}-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";
2021-01-14 23:07:56 -08:00
platforms = lib.platforms.unix;
license = lib.licenses.asl20;
2014-06-22 13:38:27 -07:00
};
}