2016-01-07 04:55:16 +00:00
|
|
|
{ stdenv, fetchurl, apacheAnt, jdk, unzip }:
|
2008-02-04 12:24:41 +00:00
|
|
|
|
2016-01-07 04:55:16 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "axis2-${version}";
|
|
|
|
version = "1.6.4";
|
2008-02-04 12:24:41 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-01-07 04:55:16 +00:00
|
|
|
url = "http://apache.proserve.nl/axis/axis2/java/core/${version}/${name}-bin.zip";
|
|
|
|
sha256 = "12ir706dn95567j6lkxdwrh28vnp6292h59qwjyqjm7ckglkmgyr";
|
2008-02-04 12:24:41 +00:00
|
|
|
};
|
|
|
|
|
2009-10-13 14:21:51 +01:00
|
|
|
buildInputs = [ unzip apacheAnt jdk ];
|
|
|
|
builder = ./builder.sh;
|
2014-06-22 21:38:27 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Web Services / SOAP / WSDL engine, the successor to the widely used Apache Axis SOAP stack";
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2018-07-22 16:35:01 +01:00
|
|
|
license = stdenv.lib.licenses.asl20;
|
2014-06-22 21:38:27 +01:00
|
|
|
};
|
2008-02-04 12:24:41 +00:00
|
|
|
}
|