2024-04-21 15:54:59 +00:00
|
|
|
{ lib, stdenvNoCC, fetchurl, apacheAnt, jdk, unzip }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-04-21 15:54:59 +00:00
|
|
|
stdenvNoCC.mkDerivation rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "axis2";
|
2024-01-02 11:29:13 +00:00
|
|
|
version = "1.8.2";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-01-02 11:29:13 +00:00
|
|
|
url = "mirror://apache/axis/axis2/java/core/${version}/${pname}-${version}-bin.zip";
|
|
|
|
hash = "sha256-oilPVFFpl3F61nVDxcYx/bc81FopS5fzoIdXzeP8brk=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-03-19 17:17:44 +00:00
|
|
|
nativeBuildInputs = [ unzip ];
|
|
|
|
buildInputs = [ apacheAnt jdk ];
|
2020-04-24 23:36:52 +00:00
|
|
|
builder = ./builder.sh;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Web Services / SOAP / WSDL engine, the successor to the widely used Apache Axis SOAP stack";
|
2024-01-02 11:29:13 +00:00
|
|
|
homepage = "https://axis.apache.org/axis2/java/core/";
|
|
|
|
changelog = "https://axis.apache.org/axis2/java/core/release-notes/${version}.html";
|
|
|
|
maintainers = [ lib.maintainers.anthonyroussel ];
|
2021-01-15 22:18:51 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2022-06-16 17:23:12 +00:00
|
|
|
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
|
2021-01-15 22:18:51 +00:00
|
|
|
license = lib.licenses.asl20;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|