nixpkgs/pkgs/development/libraries/axis/default.nix

17 lines
397 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation {
2014-06-22 21:33:46 +01:00
name = "axis-1.3";
directory = "axis-1_3";
builder = ./builder.sh;
src = fetchurl {
url = "http://archive.apache.org/dist/ws/axis/1_3/axis-bin-1_3.tar.gz";
2014-06-22 21:33:46 +01:00
md5 = "dd8203f08c37872f4fd2bfb45c4bfe04";
};
inherit stdenv;
2014-06-22 21:36:23 +01:00
meta = {
description = "Implementation of the SOAP (Simple Object Access Protocol) submission to W3C";
};
}