Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
39 lines
1.0 KiB
Nix
39 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
buildGraalvmNativeImage,
|
|
fetchurl,
|
|
testers,
|
|
}:
|
|
|
|
buildGraalvmNativeImage (finalAttrs: {
|
|
pname = "jet";
|
|
version = "0.7.27";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/borkdude/jet/releases/download/v${finalAttrs.version}/jet-${finalAttrs.version}-standalone.jar";
|
|
sha256 = "sha256-250/1DBNCXlU1b4jjLUUOXI+uSbOyPXtBN1JJRpdmFc=";
|
|
};
|
|
|
|
extraNativeImageBuildArgs = [
|
|
"-H:+ReportExceptionStackTraces"
|
|
"-H:Log=registerResource:"
|
|
"--no-fallback"
|
|
"--no-server"
|
|
];
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
inherit (finalAttrs) version;
|
|
package = finalAttrs.finalPackage;
|
|
command = "jet --version";
|
|
};
|
|
|
|
meta = {
|
|
description = "CLI to transform between JSON, EDN, YAML and Transit, powered with a minimal query language";
|
|
homepage = "https://github.com/borkdude/jet";
|
|
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
|
|
license = lib.licenses.epl10;
|
|
maintainers = with lib.maintainers; [ ericdallo ];
|
|
mainProgram = "jet";
|
|
};
|
|
})
|