Merge pull request #291472 from stigtsp/yamlscript-init
yamlscript: init at 0.1.38
This commit is contained in:
commit
2723bacae8
1 changed files with 40 additions and 0 deletions
40
pkgs/by-name/ya/yamlscript/package.nix
Normal file
40
pkgs/by-name/ya/yamlscript/package.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
{ lib, buildGraalvmNativeImage, fetchurl }:
|
||||
|
||||
buildGraalvmNativeImage rec {
|
||||
pname = "yamlscript";
|
||||
version = "0.1.38";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/yaml/yamlscript/releases/download/${version}/yamlscript.cli-${version}-standalone.jar";
|
||||
hash = "sha256-cdRMmeJTlkEmF4jbElrXgobSU+VIvh/k9Lr9WkOSTl8=";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue