bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
27 lines
713 B
Nix
27 lines
713 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "jql";
|
|
version = "7.1.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "yamafaktory";
|
|
repo = pname;
|
|
rev = "jql-v${version}";
|
|
hash = "sha256-gXxYN6WIbQNhFTCcrT6Kioo0FjbJM5gxHTjAK71LMjs=";
|
|
};
|
|
|
|
cargoHash = "sha256-bz8iAgdRxTQyZJsTVVwIpiC/ktas4Sv/S7PCqQ+/HDY=";
|
|
|
|
meta = with lib; {
|
|
description = "JSON Query Language CLI tool built with Rust";
|
|
homepage = "https://github.com/yamafaktory/jql";
|
|
changelog = "https://github.com/yamafaktory/jql/releases/tag/${src.rev}";
|
|
license = with licenses; [ asl20 mit ];
|
|
maintainers = with maintainers; [ akshgpt7 figsoda ];
|
|
mainProgram = "jql";
|
|
};
|
|
}
|