jless: 0.8.0 -> 0.9.0

Diff: https://github.com/PaulJuliusMartinez/jless/compare/v0.8.0...v0.9.0

Changelog: https://github.com/PaulJuliusMartinez/jless/blob/v0.9.0/CHANGELOG.md

figsoda 1878ff08 da5286cd

+5 -4
+5 -4
pkgs/development/tools/jless/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "jless"; 5 - version = "0.8.0"; 6 7 src = fetchFromGitHub { 8 owner = "PaulJuliusMartinez"; 9 repo = "jless"; 10 rev = "v${version}"; 11 - sha256 = "sha256-NB/s29M46mVhTsJWFYnBgJjSjUVbfdmuz69VdpVuR7c="; 12 }; 13 14 - cargoSha256 = "sha256-cPj9cTRhWK/YU8Cae63p4Vm5ohB1IfGL5fu7yyFGSXA="; 15 16 nativeBuildInputs = lib.optionals stdenv.isLinux [ python3 ]; 17 ··· 22 meta = with lib; { 23 description = "A command-line pager for JSON data"; 24 homepage = "https://jless.io"; 25 license = licenses.mit; 26 - maintainers = with maintainers; [ jfchevrette ]; 27 }; 28 }
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "jless"; 5 + version = "0.9.0"; 6 7 src = fetchFromGitHub { 8 owner = "PaulJuliusMartinez"; 9 repo = "jless"; 10 rev = "v${version}"; 11 + hash = "sha256-76oFPUWROX389U8DeMjle/GkdItu+0eYxZkt1c6l0V4="; 12 }; 13 14 + cargoHash = "sha256-sas94liAOSIirIJGdexdApXic2gWIBDT4uJFRM3qMw0="; 15 16 nativeBuildInputs = lib.optionals stdenv.isLinux [ python3 ]; 17 ··· 22 meta = with lib; { 23 description = "A command-line pager for JSON data"; 24 homepage = "https://jless.io"; 25 + changelog = "https://github.com/PaulJuliusMartinez/jless/blob/${src.rev}/CHANGELOG.md"; 26 license = licenses.mit; 27 + maintainers = with maintainers; [ figsoda jfchevrette ]; 28 }; 29 }