python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / jaq / default.nix
blobbac766ac60764a085470890c92d459d009cc2c64
1 { lib, stdenv, fetchFromGitHub, rustPlatform, Security }:
3 rustPlatform.buildRustPackage rec {
4   pname = "jaq";
5   version = "0.8.2";
7   src = fetchFromGitHub {
8     owner = "01mf02";
9     repo = "jaq";
10     rev = "v${version}";
11     sha256 = "sha256-a2LJUWRQsUnwU0DZnO5T+geeVOBXPfsBptEMnO+jnFA=";
12   };
14   cargoSha256 = "sha256-IJqM9XuJSEZadYc38TnyVrszuL5noYktnlyVu7IBE5k=";
16   buildInputs = lib.optionals stdenv.isDarwin [ Security ];
18   meta = with lib; {
19     description = "A jq clone focused on correctness, speed and simplicity";
20     homepage = "https://github.com/01mf02/jaq";
21     license = licenses.mit;
22     maintainers = with maintainers; [ siraben ];
23   };