mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
41 lines
1.0 KiB
Nix
41 lines
1.0 KiB
Nix
{ lib, buildGraalvmNativeImage, fetchurl }:
|
|
|
|
buildGraalvmNativeImage rec {
|
|
pname = "yamlscript";
|
|
version = "0.1.75";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/yaml/yamlscript/releases/download/${version}/yamlscript.cli-${version}-standalone.jar";
|
|
hash = "sha256-GdnrEHVdJmwcs6l1Fw3pXJ8hS+spcNpDQ346d6F0OTM=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|