ant builder
svn path=/nixpkgs/trunk/; revision=20395
This commit is contained in:
parent
4523a86c92
commit
edb6a80ac3
85
pkgs/build-support/release/ant-build.nix
Normal file
85
pkgs/build-support/release/ant-build.nix
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
{ src
|
||||||
|
, stdenv
|
||||||
|
, name
|
||||||
|
, antTargets ? []
|
||||||
|
, jars ? []
|
||||||
|
, jarWrappers ? []
|
||||||
|
, antProperties ? []
|
||||||
|
, ... } @ args:
|
||||||
|
|
||||||
|
let
|
||||||
|
antFlags = stdenv.lib.concatMapStrings ({name, value}: "-D${name}=${value}" ) antProperties ;
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation (
|
||||||
|
|
||||||
|
{
|
||||||
|
showBuildStats = true;
|
||||||
|
|
||||||
|
postPhases =
|
||||||
|
["generateWrappersPhase" "finalPhase"];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
ensureDir $out/lib/java
|
||||||
|
${ if jars == [] then ''
|
||||||
|
find . -name "*.jar" | xargs -I{} cp -v {} $out/lib/java
|
||||||
|
'' else stdenv.lib.concatMapStrings (j: ''
|
||||||
|
cp -v ${j} $out/lib/java
|
||||||
|
echo file jar $out/lib/java/${j} >> $out/nix-support/hydra-build-products
|
||||||
|
'') jars }
|
||||||
|
'';
|
||||||
|
|
||||||
|
generateWrappersPhase = ''
|
||||||
|
header "Generating jar wrappers"
|
||||||
|
'' + (stdenv.lib.concatMapStrings (w: ''
|
||||||
|
|
||||||
|
cat >> $out/bin/jclasslib <<EOF
|
||||||
|
#! /bin/sh
|
||||||
|
export JAVA_HOME=$jre
|
||||||
|
$jre/bin/java ${if w ? mainClass then "-cp $out/lib/java/${w.jar} ${w.mainClass}" else "-jar $out/lib/java/${w.jar}"} \$@
|
||||||
|
EOF
|
||||||
|
|
||||||
|
chmod a+x $out/bin/${w.name} || exit 1
|
||||||
|
'') jarWrappers) + ''
|
||||||
|
closeNest
|
||||||
|
'';
|
||||||
|
|
||||||
|
buildPhase = if antTargets == [] then ''
|
||||||
|
header "Building default ant target"
|
||||||
|
ant ${antFlags}
|
||||||
|
closeNest
|
||||||
|
'' else stdenv.lib.concatMapStrings (t: ''
|
||||||
|
header "Building '${t}' target"
|
||||||
|
ant ${antFlags} ${t}
|
||||||
|
closeNest
|
||||||
|
'') antTargets;
|
||||||
|
|
||||||
|
finalPhase =
|
||||||
|
''
|
||||||
|
# Propagate the release name of the source tarball. This is
|
||||||
|
# to get nice package names in channels.
|
||||||
|
if test -e $origSrc/nix-support/hydra-release-name; then
|
||||||
|
cp $origSrc/nix-support/hydra-release-name $out/nix-support/hydra-release-name
|
||||||
|
fi
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
|
||||||
|
// removeAttrs args ["antProperties"] //
|
||||||
|
|
||||||
|
{
|
||||||
|
name = name + (if src ? version then "-" + src.version else "");
|
||||||
|
|
||||||
|
postHook = ''
|
||||||
|
ensureDir $out/nix-support
|
||||||
|
echo "$system" > $out/nix-support/system
|
||||||
|
|
||||||
|
# If `src' is the result of a call to `makeSourceTarball', then it
|
||||||
|
# has a subdirectory containing the actual tarball(s). If there are
|
||||||
|
# multiple tarballs, just pick the first one.
|
||||||
|
origSrc=$src
|
||||||
|
if test -d $src/tarballs; then
|
||||||
|
src=$(ls $src/tarballs/*.tar.bz2 $src/tarballs/*.tar.gz | sort | head -1)
|
||||||
|
fi
|
||||||
|
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
)
|
@ -14,6 +14,10 @@ rec {
|
|||||||
{ inherit stdenv;
|
{ inherit stdenv;
|
||||||
} // args);
|
} // args);
|
||||||
|
|
||||||
|
antBuild = args: import ./ant-build.nix (
|
||||||
|
{ inherit stdenv;
|
||||||
|
} // args);
|
||||||
|
|
||||||
nixBuild = args: import ./nix-build.nix (
|
nixBuild = args: import ./nix-build.nix (
|
||||||
{ inherit stdenv;
|
{ inherit stdenv;
|
||||||
} // args);
|
} // args);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user