Added Apache Axis2

svn path=/nixpkgs/branches/stdenv-updates/; revision=10582
This commit is contained in:
Yury G. Kudryashov 2008-02-10 17:37:50 +00:00
parent 7b3c313ec6
commit 150ea51a9c
3 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,8 @@
buildInputs="$unzip $apacheAnt $jdk"
source $stdenv/setup
unzip $src
cd axis2-*/webapp
ant
ensureDir $out/webapps
cp ../dist/axis2.war $out/webapps

View file

@ -0,0 +1,15 @@
{stdenv, fetchurl, apacheAnt, jdk, unzip}:
stdenv.mkDerivation {
name = "axis2-1.3";
builder = ./builder.sh;
src = fetchurl {
url = http://apache.hippo.nl/ws/axis2/1_3/axis2-1.3-bin.zip;
md5 = "ab2bc77452288ebf80d861270734a83e";
};
inherit apacheAnt jdk unzip;
}

View file

@ -3247,6 +3247,10 @@ rec {
inherit fetchurl stdenv jdk;
};
axis2 = import ../servers/http/tomcat/axis2 {
inherit fetchurl stdenv jdk apacheAnt unzip;
};
vsftpd = import ../servers/ftp/vsftpd {
inherit fetchurl openssl stdenv libcap pam;
};