Added Apache Axis 1.3 (Apache Axis is an implementation of the SOAP
("Simple Object Access Protocol") submission to W3C.) svn path=/nixpkgs/trunk/; revision=5137
This commit is contained in:
parent
6d47926bad
commit
8c188ffe04
5
pkgs/development/libraries/axis/builder.sh
Normal file
5
pkgs/development/libraries/axis/builder.sh
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
source $stdenv/setup
|
||||||
|
|
||||||
|
mkdir -p $out
|
||||||
|
unpackPhase
|
||||||
|
mv $directory/* $out
|
12
pkgs/development/libraries/axis/default.nix
Normal file
12
pkgs/development/libraries/axis/default.nix
Normal file
@ -0,0 +1,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;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user