jaq: init at 0.8.0

This commit is contained in:
Ben Siraphob 2022-09-25 01:39:26 -05:00
parent 84e79cfbfc
commit c87abaa0f7
No known key found for this signature in database
GPG key ID: 45F0E5D788143267
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, stdenv, fetchFromGitHub, rustPlatform, Security }:
rustPlatform.buildRustPackage rec {
pname = "jaq";
version = "0.8.0";
src = fetchFromGitHub {
owner = "01mf02";
repo = "jaq";
rev = "v${version}";
sha256 = "sha256-4WCVXrw/v3cGsl7S1nGqKmWrIHeM/ODCXQBxQJgZLjw=";
};
cargoSha256 = "sha256-D+Wpzgj05PJcMlGS9eL43SdncHO/q1Wt00gvPlC7ZAE=";
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
meta = with lib; {
description = "A jq clone focused on correctness, speed and simplicity";
homepage = "https://github.com/01mf02/jaq";
license = licenses.mit;
maintainers = with maintainers; [ siraben ];
};
}

View file

@ -7866,6 +7866,10 @@ with pkgs;
usePulseaudio = true;
};
jaq = callPackage ../development/tools/jaq {
inherit (darwin.apple_sdk.frameworks) Security;
};
jasmin-compiler = callPackage ../development/compilers/jasmin-compiler { };
jazzy = callPackage ../development/tools/jazzy { };