lintspec: init at 0.2.0

This commit is contained in:
beeb
2025-02-21 16:52:15 +01:00
parent f9871f6f33
commit 0ce84d6fc3
+32
View File
@@ -0,0 +1,32 @@
{
lib,
fetchFromGitHub,
rustPlatform,
}:
rustPlatform.buildRustPackage rec {
pname = "lintspec";
version = "0.2.0";
src = fetchFromGitHub {
owner = "beeb";
repo = "lintspec";
tag = "v${version}";
hash = "sha256-qxr3gRJx7n11KJ09lMDUhvgMXh79DNeG7NYNFe1qYRY=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-qn7Z99wEGiR79vDj6Zpr+TLw6FTgL/ka9YIei66cOds=";
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}";
license = with lib.licenses; [
mit
asl20
];
maintainers = with lib.maintainers; [ beeb ];
mainProgram = "lintspec";
};
}