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

16 lines
323 B
Nix
Raw Normal View History

{stdenv, fetchurl, apacheAnt, jdk, unzip}:
stdenv.mkDerivation {
name = "axis2-1.5";
builder = ./builder.sh;
src = fetchurl {
url = http://apache.mirror.easycolocate.nl/ws/axis2/1_5/axis2-1.5-bin.zip;
sha256 = "0f0a471xfsjx7s3i9awhajl1kli8y8pd8aiki7cwb9n4g467rwmc";
};
inherit apacheAnt jdk unzip;
}