mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 05:13:04 +00:00
27 lines
800 B
Nix
27 lines
800 B
Nix
{ lib, buildGraalvmNativeImage, fetchurl }:
|
|
|
|
buildGraalvmNativeImage rec {
|
|
pname = "jet";
|
|
version = "0.5.25";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/borkdude/${pname}/releases/download/v${version}/${pname}-${version}-standalone.jar";
|
|
sha256 = "sha256-4uXK9MRBXLjfHDNl6KJY1n9b02uXg+BlIr/q1DGeRKU=";
|
|
};
|
|
|
|
extraNativeImageBuildArgs = [
|
|
"-H:+ReportExceptionStackTraces"
|
|
"-H:Log=registerResource:"
|
|
"--no-fallback"
|
|
"--no-server"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "CLI to transform between JSON, EDN, YAML and Transit, powered with a minimal query language";
|
|
homepage = "https://github.com/borkdude/jet";
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
|
license = licenses.epl10;
|
|
maintainers = with maintainers; [ ericdallo ];
|
|
};
|
|
}
|