base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / jq / jql / package.nix
blobd92e79a5ffc52be0c994b54f69fdbcdff74080f8
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "jql";
8   version = "8.0.0";
10   src = fetchFromGitHub {
11     owner = "yamafaktory";
12     repo = pname;
13     rev = "jql-v${version}";
14     hash = "sha256-4H2V/ZE29Jw0JWSzP7X8SKgD+vXoCd7pcfTqB7/8m7M=";
15   };
17   cargoHash = "sha256-/Y880GUXTUOd7SyVhbMZhMPgfm66HbWrz5miGJjfX0g=";
19   meta = with lib; {
20     description = "JSON Query Language CLI tool built with Rust";
21     homepage = "https://github.com/yamafaktory/jql";
22     changelog = "https://github.com/yamafaktory/jql/releases/tag/${src.rev}";
23     license = with licenses; [ asl20 mit ];
24     maintainers = with maintainers; [ akshgpt7 figsoda ];
25     mainProgram = "jql";
26   };