pkgs/development/tools/parsing/antlr: remove unused builder.sh

Oversight in a17311a33e.
This commit is contained in:
Wolfgang Walther 2024-11-10 18:56:26 +01:00
parent 387f59af8d
commit a763b9c781
No known key found for this signature in database
GPG Key ID: B39893FA5F65CAE1

View File

@ -1,24 +0,0 @@
if [ -e "$NIX_ATTRS_SH_FILE" ]; then . "$NIX_ATTRS_SH_FILE"; elif [ -f .attrs.sh ]; then . .attrs.sh; fi
source $stdenv/setup
tar zxvf $src
cd antlr-*
cd lib
mkdir -p $out/lib/antlr
mkdir -p $out/bin
cp *.jar $out/lib/antlr
classpath=""
for jar in $out/lib/antlr/*.jar; do
classpath="$classpath:$jar"
done
cat > $out/bin/antlr <<EOF
#! $SHELL
$jre/bin/java -cp $classpath -Xms200M -Xmx400M org.antlr.Tool \$*
EOF
chmod u+x $out/bin/antlr