jless: init at 0.7.1

This commit is contained in:
Jean-Francois Chevrette
2022-02-09 18:03:04 -05:00
parent 607285bc0e
commit e646b64ebb
2 changed files with 24 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "jless";
version = "0.7.1";
src = fetchFromGitHub {
owner = "PaulJuliusMartinez";
repo = "jless";
rev = "v${version}";
sha256 = "sha256-gBqyo/N/qF6HCTUrSKNVLiL1fc/JTfip1kNpNCBzRT8=";
};
cargoSha256 = "sha256-PbX61RVbrI2kTuyXK+LhQdJDvNo3KjIQH5eBbL6iUBM=";
meta = with lib; {
description = "A command-line pager for JSON data";
homepage = "https://github.com/PaulJuliusMartinez/jless";
license = licenses.mit;
maintainers = with maintainers; [ jfchevrette ];
};
}
+2
View File
@@ -6770,6 +6770,8 @@ with pkgs;
jl = haskellPackages.callPackage ../development/tools/jl { };
jless = callPackage ../development/tools/jless { };
jmespath = callPackage ../development/tools/jmespath { };
jmtpfs = callPackage ../tools/filesystems/jmtpfs { };