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 15:34:30 +00:00
{ lib, buildGraalvmNativeImage, fetchurl }:
2021-11-10 23:25:37 +00:00
2021-11-23 15:34:30 +00:00
buildGraalvmNativeImage rec {
2021-11-10 23:25:37 +00:00
pname = "jet";
version = "0.3.21";
2021-11-10 23:25:37 +00:00
src = fetchurl {
url = "https://github.com/borkdude/${pname}/releases/download/v${version}/${pname}-${version}-standalone.jar";
sha256 = "sha256-p7jTPnXpDg1bbPMEmznFWNZ4lq/zt2fZUOE6IOc9akY=";
2021-11-10 23:25:37 +00:00
};
2021-11-23 15:34:30 +00:00
extraNativeImageBuildArgs = [
"-H:+ReportExceptionStackTraces"
"-H:Log=registerResource:"
"--no-fallback"
"--no-server"
];
2021-11-10 23:25:37 +00:00
meta = with lib; {
description = "CLI to transform between JSON, EDN, YAML and Transit, powered with a minimal query language";
2021-11-10 23:25:37 +00:00
homepage = "https://github.com/borkdude/jet";
sourceProvenance = with sourceTypes; [ binaryBytecode ];
2021-11-10 23:25:37 +00:00
license = licenses.epl10;
maintainers = with maintainers; [ ericdallo ];
};
}