bacon: 3.10.0 -> 3.11.0 (#386689)

authored by Gaétan Lepage and committed by GitHub c0a85dd5 5649e27e

+7 -7
+7 -7
pkgs/by-name/ba/bacon/package.nix
··· 23 23 ]; 24 24 in 25 25 26 - rustPlatform.buildRustPackage rec { 26 + rustPlatform.buildRustPackage (finalAttrs: { 27 27 pname = "bacon"; 28 - version = "3.10.0"; 28 + version = "3.11.0"; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "Canop"; 32 32 repo = "bacon"; 33 - tag = "v${version}"; 34 - hash = "sha256-FU7hIMAJIXD/pJ9FZSPkO1CQhmmSWwaewGyogGdZoeI="; 33 + tag = "v${finalAttrs.version}"; 34 + hash = "sha256-yFU4U1TWoumg61Vs6F5Gqz22VuI2Qs0IRz/TPGBYX4E="; 35 35 }; 36 36 37 37 useFetchCargoVendor = true; 38 - cargoHash = "sha256-+lk4YrJ7zI6t24y76kODfUok5Ibu3fFxpLIUQZQqgcw="; 38 + cargoHash = "sha256-g8DWFhgguxPked7kCCsmUPXzRqu5DaPopoxORBl4/1o="; 39 39 40 40 buildFeatures = lib.optionals withSound [ 41 41 "sound" ··· 62 62 description = "Background rust code checker"; 63 63 mainProgram = "bacon"; 64 64 homepage = "https://github.com/Canop/bacon"; 65 - changelog = "https://github.com/Canop/bacon/blob/v${version}/CHANGELOG.md"; 65 + changelog = "https://github.com/Canop/bacon/blob/v${finalAttrs.version}/CHANGELOG.md"; 66 66 license = lib.licenses.agpl3Only; 67 67 maintainers = with lib.maintainers; [ 68 68 FlorianFranzen 69 69 matthiasbeyer 70 70 ]; 71 71 }; 72 - } 72 + })