python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / xq / default.nix
blob8168f9603a5a0ac9b93375c3d3e5001ec7dc62e5
1 { lib
2 , rustPlatform
3 , fetchCrate
4 , stdenv
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "xq";
9   version = "0.2.40";
11   src = fetchCrate {
12     inherit pname version;
13     sha256 = "sha256-sOCdNQ+prQRdj3Oeaa4HLhufbwtClUzzhnMDwSU4SJE=";
14   };
16   cargoSha256 = "sha256-b41D/sg+qD/SbwQvEqv3sFWuW15VQ4gEiL51I7/hOmI=";
18   meta = with lib; {
19     description = "Pure rust implementation of jq";
20     homepage = "https://github.com/MiSawa/xq";
21     license = licenses.mit;
22     maintainers = with maintainers; [ matthewcroughan ];
23   };