nixpkgs/pkgs/development/tools/jet/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
800 B
Nix
Raw Normal View History

2021-11-23 16:34:30 +01:00
{ lib, buildGraalvmNativeImage, fetchurl }:
2021-11-11 00:25:37 +01:00
2021-11-23 16:34:30 +01:00
buildGraalvmNativeImage rec {
2021-11-11 00:25:37 +01:00
pname = "jet";
2023-08-10 02:04:03 +02:00
version = "0.7.27";
2021-11-11 00:25:37 +01:00
src = fetchurl {
url = "https://github.com/borkdude/${pname}/releases/download/v${version}/${pname}-${version}-standalone.jar";
2023-08-10 02:04:03 +02:00
sha256 = "sha256-250/1DBNCXlU1b4jjLUUOXI+uSbOyPXtBN1JJRpdmFc=";
2021-11-11 00:25:37 +01:00
};
2021-11-23 16:34:30 +01:00
extraNativeImageBuildArgs = [
"-H:+ReportExceptionStackTraces"
"-H:Log=registerResource:"
"--no-fallback"
"--no-server"
];
2021-11-11 00:25:37 +01:00
meta = with lib; {
description = "CLI to transform between JSON, EDN, YAML and Transit, powered with a minimal query language";
2021-11-11 00:25:37 +01:00
homepage = "https://github.com/borkdude/jet";
sourceProvenance = with sourceTypes; [ binaryBytecode ];
2021-11-11 00:25:37 +01:00
license = licenses.epl10;
maintainers = with maintainers; [ ericdallo ];
};
}