From 19d12a463c545d6c7f23f2383b66ab0c57eff3a6 Mon Sep 17 00:00:00 2001 From: beeb <703631+beeb@users.noreply.github.com> Date: Thu, 18 Sep 2025 23:09:43 +0200 Subject: [PATCH] lintspec: 0.9.0 -> 0.9.1 --- pkgs/by-name/li/lintspec/package.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/by-name/li/lintspec/package.nix b/pkgs/by-name/li/lintspec/package.nix index a785d1f5828e..9278a09056ff 100644 --- a/pkgs/by-name/li/lintspec/package.nix +++ b/pkgs/by-name/li/lintspec/package.nix @@ -6,18 +6,18 @@ stdenv, }: -rustPlatform.buildRustPackage rec { +rustPlatform.buildRustPackage (finalAttrs: { pname = "lintspec"; - version = "0.9.0"; + version = "0.9.1"; src = fetchFromGitHub { owner = "beeb"; repo = "lintspec"; - tag = "v${version}"; - hash = "sha256-5jNOMAohfzq/S+1LASQh0hvzqdMLQGdPYSb6rcGxmD8="; + tag = "v${finalAttrs.version}"; + hash = "sha256-NYa90VQiiT3XU0w3DciPOBpEM59XyZHk+ixtj8oTgO8="; }; - cargoHash = "sha256-m9n9r3SJtGx3/MURmZak2XRCLkmQZU06nPMQpROfvVs="; + cargoHash = "sha256-RjAZIARClm7oHnKSOObOzAHJqOrR+eyHCmtBq4RaWi0="; nativeBuildInputs = [ installShellFiles ]; postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' @@ -30,7 +30,7 @@ rustPlatform.buildRustPackage rec { meta = { description = "Blazingly fast linter for NatSpec comments in Solidity code"; homepage = "https://github.com/beeb/lintspec"; - changelog = "https://github.com/beeb/lintspec/releases/tag/v${version}"; + changelog = "https://github.com/beeb/lintspec/releases/tag/v${finalAttrs.version}"; license = with lib.licenses; [ mit asl20 @@ -38,4 +38,4 @@ rustPlatform.buildRustPackage rec { maintainers = with lib.maintainers; [ beeb ]; mainProgram = "lintspec"; }; -} +})