mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-17 18:34:38 +00:00
c01f509e44
if theres a source $stdenv then this is needed for structuredAttrs
17 lines
248 B
Bash
17 lines
248 B
Bash
if [ -e .attrs.sh ]; then source .attrs.sh; fi
|
|
source $stdenv/setup
|
|
|
|
unzip $src
|
|
cd axis2-*
|
|
mkdir -p $out
|
|
cp -av * $out
|
|
cd webapp
|
|
ant
|
|
cd ..
|
|
mkdir -p $out/webapps
|
|
cp dist/axis2.war $out/webapps
|
|
cd $out/webapps
|
|
mkdir axis2
|
|
cd axis2
|
|
unzip ../axis2.war
|