summary refs log blame commit diff
path: root/pkgs/development/libraries/axis/default.nix
blob: f2c466009d456e589ab09faa75909fd1db5f5cdc (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                                    
{stdenv, fetchurl}:

stdenv.mkDerivation {
	name = "axis-1.3";
	directory = "axis-1_3";
	builder = ./builder.sh;
	src = fetchurl {
		url = "http://apache.cs.uu.nl/dist/ws/axis/1_3/axis-bin-1_3.tar.gz";
		md5 = "dd8203f08c37872f4fd2bfb45c4bfe04";
	};
	inherit stdenv;
}