Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{
|
|
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";
|
|
};
|
|
})
|