biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / xq / default.nix
blob1de537e071a546c2240a476b529c64a6f7847967
1 { lib
2 , rustPlatform
3 , fetchCrate
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "xq";
8   version = "0.4.1";
10   src = fetchCrate {
11     inherit pname version;
12     hash = "sha256-Qe+crretlKJRoNPO2+aHxCmMO9MecqGjOuvdhr4a0NU=";
13   };
15   cargoHash = "sha256-R2ng5l2l/5vWnTJ3kt3cURNWL4Lo55yGbSE+9hjQu20=";
17   meta = with lib; {
18     description = "Pure rust implementation of jq";
19     homepage = "https://github.com/MiSawa/xq";
20     license = licenses.mit;
21     maintainers = with maintainers; [ matthewcroughan ];
22     mainProgram = "xq";
23   };