lol

Merge pull request #158834 from jfchevrette/jless

jless: init at 0.7.1

authored by

zowoq and committed by
GitHub
88cf48cc 3009a72f

+34
+10
maintainers/maintainer-list.nix
··· 5596 5596 githubId = 143075; 5597 5597 name = "James Felix Black"; 5598 5598 }; 5599 + jfchevrette = { 5600 + email = "jfchevrette@gmail.com"; 5601 + github = "jfchevrette"; 5602 + githubId = 3001; 5603 + name = "Jean-Francois Chevrette"; 5604 + keys = [{ 5605 + longkeyid = "rsa4096/0x67A0585801290DC6"; 5606 + fingerprint = "B612 96A9 498E EECD D5E9 C0F0 67A0 5858 0129 0DC6"; 5607 + }]; 5608 + }; 5599 5609 jflanglois = { 5600 5610 email = "yourstruly@julienlanglois.me"; 5601 5611 github = "jflanglois";
+22
pkgs/development/tools/jless/default.nix
··· 1 + { lib, fetchFromGitHub, rustPlatform }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "jless"; 5 + version = "0.7.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "PaulJuliusMartinez"; 9 + repo = "jless"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-gBqyo/N/qF6HCTUrSKNVLiL1fc/JTfip1kNpNCBzRT8="; 12 + }; 13 + 14 + cargoSha256 = "sha256-PbX61RVbrI2kTuyXK+LhQdJDvNo3KjIQH5eBbL6iUBM="; 15 + 16 + meta = with lib; { 17 + description = "A command-line pager for JSON data"; 18 + homepage = "https://github.com/PaulJuliusMartinez/jless"; 19 + license = licenses.mit; 20 + maintainers = with maintainers; [ jfchevrette ]; 21 + }; 22 + }
+2
pkgs/top-level/all-packages.nix
··· 6774 6774 6775 6775 jl = haskellPackages.callPackage ../development/tools/jl { }; 6776 6776 6777 + jless = callPackage ../development/tools/jless { }; 6778 + 6777 6779 jmespath = callPackage ../development/tools/jmespath { }; 6778 6780 6779 6781 jmtpfs = callPackage ../tools/filesystems/jmtpfs { };