Merge pull request #203988 from raphaelr/jfmt

jfmt: 1.2.0 -> 1.2.1

authored by figsoda and committed by GitHub f76c121f 48a2416b

+5 -4
+5 -4
pkgs/development/tools/jfmt/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "jfmt"; 5 - version = "1.2.0"; 6 7 src = fetchFromGitHub { 8 owner = "scruffystuffs"; 9 repo = "${pname}.rs"; 10 - rev = version; 11 - sha256 = "07qb0sjwww6d2n7fw8w4razq1mkn4psrs9wqi1ccndrya1y39d8b"; 12 }; 13 14 - cargoSha256 = "19kg2n53y9nazwpp8gcvdprxry2llf2k7g4q4zalyxkhpf7k6irb"; 15 16 meta = with lib; { 17 description = "CLI utility to format json files"; 18 homepage = "https://github.com/scruffystuffs/jfmt.rs"; 19 license = licenses.mit; 20 maintainers = [ maintainers.psibi ]; 21 };
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "jfmt"; 5 + version = "1.2.1"; 6 7 src = fetchFromGitHub { 8 owner = "scruffystuffs"; 9 repo = "${pname}.rs"; 10 + rev = "v${version}"; 11 + hash = "sha256-X3wk669G07BTPAT5xGbAfIu2Qk90aaJIi1CLmOnSG80="; 12 }; 13 14 + cargoHash = "sha256-u/v3P7iPdBJU/0wlSNBq/cjnM3XOnoVfUjrrmo4sTAA="; 15 16 meta = with lib; { 17 description = "CLI utility to format json files"; 18 homepage = "https://github.com/scruffystuffs/jfmt.rs"; 19 + changelog = "https://github.com/scruffystuffs/jfmt.rs/blob/${version}/CHANGELOG.md"; 20 license = licenses.mit; 21 maintainers = [ maintainers.psibi ]; 22 };