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

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

23 lines
595 B
Nix
Raw Normal View History

2021-04-20 18:47:08 +00:00
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "jql";
2022-04-08 01:21:28 +00:00
version = "3.2.4";
2021-04-20 18:47:08 +00:00
src = fetchFromGitHub {
owner = "yamafaktory";
repo = pname;
rev = "v${version}";
2022-04-08 01:21:28 +00:00
sha256 = "sha256-wokdlmczClYwVskBDpKQyka1GiLf4JvRiooK+qo7Tv4=";
2021-04-20 18:47:08 +00:00
};
2022-04-08 01:21:28 +00:00
cargoSha256 = "sha256-6L78LxxzqkjP9k71WmZhkhNVdKLXUwSYioKynaETTaA=";
2021-04-20 18:47:08 +00:00
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 ];
};
}