biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / jaq / default.nix
blobb95473aac7452f418fa86c4052746bf677d602c4
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 , stdenv
5 , darwin
6 }:
8 rustPlatform.buildRustPackage rec {
9   pname = "jaq";
10   version = "1.3.0";
12   src = fetchFromGitHub {
13     owner = "01mf02";
14     repo = "jaq";
15     rev = "v${version}";
16     hash = "sha256-QXlHiVlKx9qmW5Cw4IGzjuUSUfoc9IvA5ZkTc1Ev37Q=";
17   };
19   cargoHash = "sha256-9fv8Z9AE9GV/Bq+iAsxUkD/CS25/kOBKKS4SAke/tFk=";
21   buildInputs = lib.optionals stdenv.isDarwin [
22     darwin.apple_sdk.frameworks.Security
23   ];
25   meta = with lib; {
26     description = "A jq clone focused on correctness, speed and simplicity";
27     homepage = "https://github.com/01mf02/jaq";
28     changelog = "https://github.com/01mf02/jaq/releases/tag/${src.rev}";
29     license = licenses.mit;
30     maintainers = with maintainers; [ figsoda siraben ];
31     mainProgram = "jaq";
32   };