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

Oversight in a17311a33e.

(cherry picked from commit a763b9c781)
This commit is contained in:
Wolfgang Walther 2024-11-10 18:56:26 +01:00 committed by github-actions[bot]
parent 7e43205aae
commit e5df692413

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