biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / jql / default.nix
blob3f4eb952c37f0744e1e28e856715cd58a67c4b06
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "jql";
8   version = "7.1.7";
10   src = fetchFromGitHub {
11     owner = "yamafaktory";
12     repo = pname;
13     rev = "jql-v${version}";
14     hash = "sha256-Yl3eWwk5Nc52I3bUjdT6QdwC65cKY0EVKNaDfJenwx0=";
15   };
17   cargoHash = "sha256-u0DqjHJv1GyoCIovCUR+gjkb9h48CbJd6saxeQFaL2A=";
19   meta = with lib; {
20     description = "A 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   };