mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 00:33:10 +00:00
Merge pull request #196042 from MatthewCroughan/mc/xq
xq: init at 0.2.39
This commit is contained in:
commit
6c701c2dfb
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 ];
|
||||
};
|
||||
}
|
@ -36755,6 +36755,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 New Issue
Block a user