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";
|
||
|
|
};
|
||
|
|
})
|