add piston nix pkg for groovy

This commit is contained in:
Dan Vargas 2022-02-11 15:22:57 -07:00
parent 2bc7155895
commit 226eca1fb9
8 changed files with 56 additions and 52 deletions

View File

@ -1,14 +0,0 @@
#!/bin/bash
# Groovy depends on JDK8+
mkdir -p java
cd java
curl "https://download.java.net/java/GA/jdk15.0.2/0d1cfde4252546c6931946de8db48ee2/7/GPL/openjdk-15.0.2_linux-x64_bin.tar.gz" -o java.tar.gz
tar xzf java.tar.gz --strip-components=1
rm java.tar.gz
cd ..
# Download Groovy binaries
curl -L "https://groovy.jfrog.io/artifactory/dist-release-local/groovy-zips/apache-groovy-binary-3.0.7.zip" -o groovy.zip
unzip -q groovy.zip
rm groovy.zip

View File

@ -1,17 +0,0 @@
#!/bin/bash
# Compile groovy scripts into a separate "classes" directory
# NOTE: - Main file MUST be a groovy script
# - not supporting object class entry points as of now
groovyc -d classes "$@"
# Create the Manifest and include groovy jars:
# NOTE: - main class will be the first file ('.' becomes '_' and without the extension)
# - groovy lib jars MUST be in the class path in order to work properly
echo "Main-Class: $(sed 's/\./\_/g'<<<${1%.*})
Class-Path: $(echo $GROOVY_HOME/lib/*.jar | sed 's/\s/\n /g')
" > manifest.txt
# Create the jar from the manifest and classes
jar cfm out.jar manifest.txt -C classes .

View File

@ -1,10 +0,0 @@
#!/bin/bash
# Groovy requires JAVA_HOME to be set
export JAVA_HOME=$PWD/java
# GROOVY_HOME needed to get the groovy libs
export GROOVY_HOME=$PWD/groovy-3.0.7
# Add java and groovy binaries to the path
export PATH=$PWD/java/bin:$PWD/groovy-3.0.7/bin:$PATH

View File

@ -1,5 +0,0 @@
{
"language": "groovy",
"version": "3.0.7",
"aliases": ["groovy", "gvy"]
}

View File

@ -1,5 +0,0 @@
#!/bin/bash
# Run the jar created during compile
shift
java -jar out.jar "$@"

View File

@ -1 +0,0 @@
println 'OK'

View File

@ -43,4 +43,5 @@ args: {
"openjdk-java" = import ./openjdk-java.nix args;
"iverilog" = import ./iverilog.nix args;
"ghc-haskell" = import ./ghc-haskell.nix args;
"groovy" = import ./groovy.nix args;
}

55
runtimes/groovy.nix Normal file
View File

@ -0,0 +1,55 @@
{pkgs, piston, ...}:
let
pkg = pkgs.groovy;
jre = pkgs.jre;
awk = pkgs.gawk;
sed = pkgs.gnused;
grep = pkgs.gnugrep;
in piston.mkRuntime {
language = "groovy";
version = pkg.version;
aliases = [
"gvy"
];
compile = ''
# Groovyc has some dependencies on GNU grep, sed, and awk in their startup script
export PATH="$PATH:${awk}/bin:${sed}/bin:${grep}/bin"
# Compile groovy scripts into a separate "classes" directory
# NOTE: - Main file MUST be a groovy script
# - not supporting object class entry points as of now
${pkg}/bin/groovyc -d classes "$@"
# Create the Manifest and include groovy jars:
# NOTE: - main class will be the first file ('.' becomes '_' and without the extension)
# - groovy lib jars MUST be in the class path in order to work properly
echo "Main-Class: $(sed 's/\./\_/g'<<<''${1%.*})
Class-Path: $(echo ${pkg}/lib/*.jar | sed 's/\s/\n /g')
" > manifest.txt
# Create the jar from the manifest and classes
${jre}/bin/jar cfm out.jar manifest.txt -C classes .
'';
run = ''
shift
${jre}/bin/java -jar out.jar "$@"
'';
tests = [
(piston.mkTest {
files = {
"test.groovy" = ''
println 'OK'
'';
};
args = [];
stdin = "";
packages = [];
main = "test.groovy";
})
];
}