mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Added Apache Axis2
svn path=/nixpkgs/trunk/; revision=10493
This commit is contained in:
parent
cc1a66d42d
commit
b52c792004
3 changed files with 27 additions and 0 deletions
8
pkgs/servers/http/tomcat/axis2/builder.sh
Normal file
8
pkgs/servers/http/tomcat/axis2/builder.sh
Normal 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
|
15
pkgs/servers/http/tomcat/axis2/default.nix
Normal file
15
pkgs/servers/http/tomcat/axis2/default.nix
Normal 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;
|
||||
}
|
|
@ -3266,6 +3266,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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue