3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/xq/default.nix
2022-10-31 11:21:16 +08:00

25 lines
528 B
Nix

{ lib
, rustPlatform
, fetchCrate
, stdenv
}:
rustPlatform.buildRustPackage rec {
pname = "xq";
version = "0.2.40";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-sOCdNQ+prQRdj3Oeaa4HLhufbwtClUzzhnMDwSU4SJE=";
};
cargoSha256 = "sha256-b41D/sg+qD/SbwQvEqv3sFWuW15VQ4gEiL51I7/hOmI=";
meta = with lib; {
description = "Pure rust implementation of jq";
homepage = "https://github.com/MiSawa/xq";
license = licenses.mit;
maintainers = with maintainers; [ matthewcroughan ];
};
}