nixpkgs/pkgs/servers/http/tomcat/axis2/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
860 B
Nix
Raw Normal View History

2021-01-15 07:07:56 +00:00
{ lib, stdenv, fetchurl, apacheAnt, jdk, unzip }:
stdenv.mkDerivation rec {
pname = "axis2";
version = "1.8.2";
src = fetchurl {
url = "mirror://apache/axis/axis2/java/core/${version}/${pname}-${version}-bin.zip";
hash = "sha256-oilPVFFpl3F61nVDxcYx/bc81FopS5fzoIdXzeP8brk=";
};
nativeBuildInputs = [ unzip ];
buildInputs = [ apacheAnt jdk ];
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";
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";
maintainers = [ lib.maintainers.anthonyroussel ];
2021-01-15 07:07:56 +00:00
platforms = lib.platforms.unix;
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
};
}