2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
28 lines
510 B
Bash
Executable file
28 lines
510 B
Bash
Executable file
if [ -e "$NIX_ATTRS_SH_FILE" ]; then . "$NIX_ATTRS_SH_FILE"; elif [ -f .attrs.sh ]; then . .attrs.sh; fi
|
|
source $stdenv/setup
|
|
|
|
export JAVA_HOME=$jre
|
|
|
|
cat >> props <<EOF
|
|
output.dir=$out
|
|
context.javaPath=$jre
|
|
EOF
|
|
|
|
mkdir -p $out
|
|
$jre/bin/java -jar $src -text props
|
|
|
|
echo "Removing files at top level"
|
|
for file in $out/*
|
|
do
|
|
if test -f $file ; then
|
|
rm $file
|
|
fi
|
|
done
|
|
|
|
cat >> $out/bin/aj-runtime-env <<EOF
|
|
#! $SHELL
|
|
|
|
export CLASSPATH=$CLASSPATH:.:$out/lib/aspectjrt.jar
|
|
EOF
|
|
|
|
chmod u+x $out/bin/aj-runtime-env
|