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