2016-01-07 05:55:16 +01:00
|
|
|
{ stdenv, fetchurl, apacheAnt, jdk, unzip }:
|
2008-02-04 13:24:41 +01:00
|
|
|
|
2016-01-07 05:55:16 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "axis2-${version}";
|
|
|
|
version = "1.6.4";
|
2008-02-04 13:24:41 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-01-07 05:55:16 +01:00
|
|
|
url = "http://apache.proserve.nl/axis/axis2/java/core/${version}/${name}-bin.zip";
|
|
|
|
sha256 = "12ir706dn95567j6lkxdwrh28vnp6292h59qwjyqjm7ckglkmgyr";
|
2008-02-04 13:24:41 +01:00
|
|
|
};
|
|
|
|
|
2009-10-13 15:21:51 +02:00
|
|
|
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";
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2014-06-22 22:38:27 +02:00
|
|
|
};
|
2008-02-04 13:24:41 +01:00
|
|
|
}
|