2021-01-15 08:07:56 +01:00
|
|
|
{ lib, stdenv, fetchurl, apacheAnt, jdk, unzip }:
|
2008-02-04 13:24:41 +01:00
|
|
|
|
2016-01-07 05:55:16 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "axis2";
|
2019-08-10 10:24:53 +02:00
|
|
|
version = "1.7.9";
|
2008-02-04 13:24:41 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "http://apache.proserve.nl/axis/axis2/java/core/${version}/${pname}-${version}-bin.zip";
|
2019-08-10 10:24:53 +02:00
|
|
|
sha256 = "0dh0s9bfh95wmmw8nyf2yw95biq7d9zmrbg8k4vzcyz1if228lac";
|
2008-02-04 13:24:41 +01:00
|
|
|
};
|
|
|
|
|
2021-02-20 22:01:53 +01:00
|
|
|
nativeBuildInputs = [ unzip ];
|
|
|
|
buildInputs = [ apacheAnt jdk ];
|
2009-10-13 15:21:51 +02:00
|
|
|
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";
|
2021-01-15 08:07:56 +01:00
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
license = lib.licenses.asl20;
|
2014-06-22 22:38:27 +02:00
|
|
|
};
|
2008-02-04 13:24:41 +01:00
|
|
|
}
|