02cf88bb76
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
22 lines
595 B
Nix
22 lines
595 B
Nix
{ lib, fetchFromGitHub, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "jql";
|
|
version = "4.0.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "yamafaktory";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-5QVktJpGpHzwRUN8oIFoLydnA+ELhUprcQASeGzgLG8=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-qmLmkWFP8T886uR8kJKCqB0G5XIfk+r+kubamKryktc=";
|
|
|
|
meta = with lib; {
|
|
description = "A JSON Query Language CLI tool built with Rust";
|
|
homepage = "https://github.com/yamafaktory/jql";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ akshgpt7 ];
|
|
};
|
|
}
|