lintspec: 0.9.0 -> 0.9.1 (#444132)

authored by Gaétan Lepage and committed by GitHub 115abcf3 c503be99

+7 -7
+7 -7
pkgs/by-name/li/lintspec/package.nix
··· 6 6 stdenv, 7 7 }: 8 8 9 - rustPlatform.buildRustPackage rec { 9 + rustPlatform.buildRustPackage (finalAttrs: { 10 10 pname = "lintspec"; 11 - version = "0.9.0"; 11 + version = "0.9.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "beeb"; 15 15 repo = "lintspec"; 16 - tag = "v${version}"; 17 - hash = "sha256-5jNOMAohfzq/S+1LASQh0hvzqdMLQGdPYSb6rcGxmD8="; 16 + tag = "v${finalAttrs.version}"; 17 + hash = "sha256-NYa90VQiiT3XU0w3DciPOBpEM59XyZHk+ixtj8oTgO8="; 18 18 }; 19 19 20 - cargoHash = "sha256-m9n9r3SJtGx3/MURmZak2XRCLkmQZU06nPMQpROfvVs="; 20 + cargoHash = "sha256-RjAZIARClm7oHnKSOObOzAHJqOrR+eyHCmtBq4RaWi0="; 21 21 22 22 nativeBuildInputs = [ installShellFiles ]; 23 23 postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' ··· 30 30 meta = { 31 31 description = "Blazingly fast linter for NatSpec comments in Solidity code"; 32 32 homepage = "https://github.com/beeb/lintspec"; 33 - changelog = "https://github.com/beeb/lintspec/releases/tag/v${version}"; 33 + changelog = "https://github.com/beeb/lintspec/releases/tag/v${finalAttrs.version}"; 34 34 license = with lib.licenses; [ 35 35 mit 36 36 asl20 ··· 38 38 maintainers = with lib.maintainers; [ beeb ]; 39 39 mainProgram = "lintspec"; 40 40 }; 41 - } 41 + })