mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 04:03:56 +00:00
d470477e2e
Diff: https://github.com/yamafaktory/jql/compare/jql-v7.0.1...jql-v7.0.2 Changelog: https://github.com/yamafaktory/jql/releases/tag/jql-v7.0.2
27 lines
689 B
Nix
27 lines
689 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "jql";
|
|
version = "7.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "yamafaktory";
|
|
repo = pname;
|
|
rev = "jql-v${version}";
|
|
hash = "sha256-lYm+zgZkt/iVJgehJM44VqWbcR4kqt8rUSEsnz07tbU=";
|
|
};
|
|
|
|
cargoHash = "sha256-Gav89ub4ccv/lCCqNYn9NvK4Q8udlu6YaZPhouHOVss=";
|
|
|
|
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 ];
|
|
};
|
|
}
|