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

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

27 lines
689 B
Nix
Raw Normal View History

2023-03-14 09:22:53 +01:00
{ lib
, fetchFromGitHub
, rustPlatform
}:
2021-04-20 20:47:08 +02:00
rustPlatform.buildRustPackage rec {
pname = "jql";
version = "6.0.6";
2021-04-20 20:47:08 +02:00
src = fetchFromGitHub {
owner = "yamafaktory";
repo = pname;
rev = "jql-v${version}";
hash = "sha256-0Tg8vqlTngLfmp0HDxR5ymmLXw16J9pQJfOCOZrRreE=";
2021-04-20 20:47:08 +02:00
};
cargoHash = "sha256-w51soAdIdNuJzQpvQZQZuxbxlClEWYdT/v0ZOnVvsTA=";
2021-04-20 20:47:08 +02:00
meta = with lib; {
description = "A 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 ];
2021-04-20 20:47:08 +02:00
};
}