lintspec: 0.9.0 -> 0.9.1 (#444132)

This commit is contained in:
Gaétan Lepage
2025-09-19 21:03:45 +00:00
committed by GitHub
+7 -7
View File
@@ -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";
};
}
})