2020-11-04 00:47:16 +00:00
|
|
|
|
{ stdenv, fetchurl, graalvm8-ce, glibcLocales }:
|
2020-04-04 22:20:32 +01:00
|
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
pname = "babashka";
|
2020-05-20 22:30:06 +01:00
|
|
|
|
version = "0.0.97";
|
2020-04-04 22:20:32 +01:00
|
|
|
|
|
|
|
|
|
reflectionJson = fetchurl {
|
|
|
|
|
name = "reflection.json";
|
|
|
|
|
url = "https://github.com/borkdude/${pname}/releases/download/v${version}/${pname}-${version}-reflection.json";
|
2020-05-20 22:30:06 +01:00
|
|
|
|
sha256 = "1gd9ih9l02n1j9qkbxb36d3cb5sddwvxiw8kkicgc4xig77lsa7z";
|
2020-04-04 22:20:32 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "https://github.com/borkdude/${pname}/releases/download/v${version}/${pname}-${version}-standalone.jar";
|
2020-05-20 22:30:06 +01:00
|
|
|
|
sha256 = "08py6bawfrhg90fbcnv2mq4c91g5wa1q2q6zdjy2i1b9q4x1654r";
|
2020-04-04 22:20:32 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
dontUnpack = true;
|
|
|
|
|
|
2020-04-21 23:07:41 +01:00
|
|
|
|
LC_ALL = "en_US.UTF-8";
|
2020-11-04 00:47:16 +00:00
|
|
|
|
nativeBuildInputs = [ graalvm8-ce glibcLocales ];
|
2020-04-04 22:20:32 +01:00
|
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
|
native-image \
|
|
|
|
|
-jar ${src} \
|
|
|
|
|
-H:Name=bb \
|
|
|
|
|
-H:+ReportExceptionStackTraces \
|
|
|
|
|
-J-Dclojure.spec.skip-macros=true \
|
|
|
|
|
-J-Dclojure.compiler.direct-linking=true \
|
|
|
|
|
"-H:IncludeResources=BABASHKA_VERSION" \
|
|
|
|
|
"-H:IncludeResources=SCI_VERSION" \
|
|
|
|
|
-H:ReflectionConfigurationFiles=${reflectionJson} \
|
|
|
|
|
--initialize-at-run-time=java.lang.Math\$RandomNumberGeneratorHolder \
|
|
|
|
|
--initialize-at-build-time \
|
|
|
|
|
-H:Log=registerResource: \
|
|
|
|
|
-H:EnableURLProtocols=http,https \
|
|
|
|
|
--enable-all-security-services \
|
|
|
|
|
-H:+JNI \
|
|
|
|
|
--verbose \
|
|
|
|
|
--no-fallback \
|
|
|
|
|
--no-server \
|
|
|
|
|
--report-unsupported-elements-at-runtime \
|
2020-04-24 18:44:19 +01:00
|
|
|
|
"--initialize-at-run-time=org.postgresql.sspi.SSPIClient" \
|
2020-04-25 09:00:29 +01:00
|
|
|
|
"-J-Xmx4500m"
|
2020-04-04 22:20:32 +01:00
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
|
mkdir -p $out/bin
|
|
|
|
|
cp bb $out/bin/bb
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
|
description = "A Clojure babushka for the grey areas of Bash";
|
|
|
|
|
longDescription = ''
|
2020-05-20 22:30:06 +01:00
|
|
|
|
The main idea behind babashka is to leverage Clojure in places where you
|
2020-04-04 22:20:32 +01:00
|
|
|
|
would be using bash otherwise.
|
|
|
|
|
|
|
|
|
|
As one user described it:
|
|
|
|
|
|
2020-05-20 22:30:06 +01:00
|
|
|
|
I’m quite at home in Bash most of the time, but there’s a substantial
|
|
|
|
|
grey area of things that are too complicated to be simple in bash, but
|
|
|
|
|
too simple to be worth writing a clj/s script for. Babashka really
|
2020-04-04 22:20:32 +01:00
|
|
|
|
seems to hit the sweet spot for those cases.
|
|
|
|
|
|
|
|
|
|
Goals:
|
|
|
|
|
|
|
|
|
|
- Low latency Clojure scripting alternative to JVM Clojure.
|
|
|
|
|
- Easy installation: grab the self-contained binary and run. No JVM needed.
|
|
|
|
|
- Familiarity and portability:
|
|
|
|
|
- Scripts should be compatible with JVM Clojure as much as possible
|
2020-05-20 22:30:06 +01:00
|
|
|
|
- Scripts should be platform-independent as much as possible. Babashka
|
2020-04-04 22:20:32 +01:00
|
|
|
|
offers support for linux, macOS and Windows.
|
|
|
|
|
- Allow interop with commonly used classes like java.io.File and System
|
|
|
|
|
- Multi-threading support (pmap, future, core.async)
|
|
|
|
|
- Batteries included (tools.cli, cheshire, ...)
|
|
|
|
|
- Library support via popular tools like the clojure CLI
|
|
|
|
|
'';
|
|
|
|
|
homepage = "https://github.com/borkdude/babashka";
|
|
|
|
|
license = licenses.epl10;
|
2020-11-04 00:47:16 +00:00
|
|
|
|
platforms = graalvm8-ce.meta.platforms;
|
2020-05-02 15:44:25 +01:00
|
|
|
|
maintainers = with maintainers; [ bandresen bhougland DerGuteMoritz jlesquembre ];
|
2020-04-04 22:20:32 +01:00
|
|
|
|
};
|
|
|
|
|
}
|