forked from mirrors/nixpkgs
xq: init at 0.2.39
This commit is contained in:
parent
7d682ef84f
commit
668a53a3b2
24
pkgs/tools/misc/xq/default.nix
Normal file
24
pkgs/tools/misc/xq/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ lib
|
||||
, rustPlatform
|
||||
, fetchCrate
|
||||
, stdenv
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "xq";
|
||||
version = "0.2.39";
|
||||
|
||||
src = fetchCrate {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-eyQ38Ld/sVI5vvQRohGfu+cXNtS3nTOBwxiO9BqjxhM=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-LajK6OaH6uwnwXvOSJCY/oTtAd2+mcFTWghxC5mVAjQ=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Pure rust implementation of jq";
|
||||
homepage = "https://github.com/MiSawa/xq";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ matthewcroughan ];
|
||||
};
|
||||
}
|
|
@ -36747,6 +36747,8 @@ with pkgs;
|
|||
|
||||
xlockmore = callPackage ../misc/screensavers/xlockmore { };
|
||||
|
||||
xq = callPackage ../tools/misc/xq { };
|
||||
|
||||
xtrlock-pam = callPackage ../misc/screensavers/xtrlock-pam { };
|
||||
|
||||
sailsd = callPackage ../misc/sailsd { };
|
||||
|
|
Loading…
Reference in a new issue