Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.1 KiB
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
fetchFromGitHub,
installShellFiles,
lib,
rustPlatform,
stdenv,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "lintspec";
version = "0.9.1";
src = fetchFromGitHub {
owner = "beeb";
repo = "lintspec";
tag = "v${finalAttrs.version}";
hash = "sha256-NYa90VQiiT3XU0w3DciPOBpEM59XyZHk+ixtj8oTgO8=";
};
cargoHash = "sha256-RjAZIARClm7oHnKSOObOzAHJqOrR+eyHCmtBq4RaWi0=";
nativeBuildInputs = [ installShellFiles ];
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
installShellCompletion --cmd lintspec \
--bash <($out/bin/lintspec completions -s bash) \
--fish <($out/bin/lintspec completions -s fish) \
--zsh <($out/bin/lintspec completions -s zsh)
'';
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${finalAttrs.version}";
license = with lib.licenses; [
mit
asl20
];
maintainers = with lib.maintainers; [ beeb ];
mainProgram = "lintspec";
};
})