41 lines
1 KiB
Nix
41 lines
1 KiB
Nix
|
{ lib, buildGraalvmNativeImage, fetchurl }:
|
||
|
|
||
|
buildGraalvmNativeImage rec {
|
||
|
pname = "yamlscript";
|
||
|
version = "0.1.79";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/yaml/yamlscript/releases/download/${version}/yamlscript.cli-${version}-standalone.jar";
|
||
|
hash = "sha256-Jx3mnAgsTi/5nqcy6DVYPoM4GlQJf+10uuQzhUWp5ZU=";
|
||
|
};
|
||
|
|
||
|
executable = "ys";
|
||
|
|
||
|
extraNativeImageBuildArgs = [
|
||
|
"--native-image-info"
|
||
|
"--no-fallback"
|
||
|
"--initialize-at-build-time"
|
||
|
"--enable-preview"
|
||
|
"-H:+ReportExceptionStackTraces"
|
||
|
"-H:IncludeResources=SCI_VERSION"
|
||
|
"-H:Log=registerResource:"
|
||
|
"-J-Dclojure.spec.skip-macros=true"
|
||
|
"-J-Dclojure.compiler.direct-linking=true"
|
||
|
];
|
||
|
|
||
|
doInstallCheck = true;
|
||
|
|
||
|
installCheckPhase = ''
|
||
|
$out/bin/ys -e 'say: (+ 1 2)' | fgrep 3
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Programming in YAML";
|
||
|
homepage = "https://github.com/yaml/yamlscript";
|
||
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
||
|
license = licenses.mit;
|
||
|
mainProgram = "ys";
|
||
|
maintainers = with maintainers; [ sgo ];
|
||
|
};
|
||
|
}
|