2021-01-15 07:07:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, apacheAnt, jdk, unzip }:
|
2008-02-04 12:24:41 +00:00
|
|
|
|
2016-01-07 04:55:16 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "axis2";
|
2023-10-26 05:20:56 +00:00
|
|
|
version = "1.8.2";
|
2008-02-04 12:24:41 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-10-26 05:20:56 +00:00
|
|
|
url = "mirror://apache/axis/axis2/java/core/${version}/${pname}-${version}-bin.zip";
|
|
|
|
hash = "sha256-oilPVFFpl3F61nVDxcYx/bc81FopS5fzoIdXzeP8brk=";
|
2008-02-04 12:24:41 +00:00
|
|
|
};
|
|
|
|
|
2021-02-20 21:01:53 +00:00
|
|
|
nativeBuildInputs = [ unzip ];
|
|
|
|
buildInputs = [ apacheAnt jdk ];
|
2009-10-13 13:21:51 +00:00
|
|
|
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";
|
2023-10-26 05:20:56 +00:00
|
|
|
homepage = "https://axis.apache.org/axis2/java/core/";
|
2023-10-26 09:00:47 +00:00
|
|
|
changelog = "https://axis.apache.org/axis2/java/core/release-notes/${version}.html";
|
2023-11-07 10:38:34 +00:00
|
|
|
maintainers = [ lib.maintainers.anthonyroussel ];
|
2021-01-15 07:07:56 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2022-06-02 13:38:41 +00:00
|
|
|
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
|
2021-01-15 07:07:56 +00:00
|
|
|
license = lib.licenses.asl20;
|
2014-06-22 20:38:27 +00:00
|
|
|
};
|
2008-02-04 12:24:41 +00:00
|
|
|
}
|