Files
nixpkgs/pkgs/by-name/sh/shisho/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

64 lines
1.8 KiB
Nix

{
lib,
fetchFromGitHub,
rustPlatform,
installShellFiles,
rustfmt,
stdenv,
}:
rustPlatform.buildRustPackage rec {
pname = "shisho";
version = "0.5.2";
src = fetchFromGitHub {
owner = "flatt-security";
repo = "shisho";
tag = "v${version}";
hash = "sha256-G7sHaDq+F5lXNaF1sSLUecdjZbCejJE79P4AQifKdFY=";
fetchSubmodules = true;
};
cargoHash = "sha256-gv3qvDzqwuuAVpbaOpMI7DuapSALMr/qzyhor3avYQI=";
nativeBuildInputs = [
installShellFiles
# required to build serde-sarif dependency
rustfmt
];
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
installShellCompletion --cmd shisho \
--bash <($out/bin/shisho completion bash) \
--fish <($out/bin/shisho completion fish) \
--zsh <($out/bin/shisho completion zsh)
'';
doInstallCheck = true;
installCheckPhase = ''
runHook preInstallCheck
$out/bin/shisho --help
$out/bin/shisho --version | grep "${version}"
runHook postInstallCheck
'';
meta = with lib; {
homepage = "https://docs.shisho.dev/shisho/";
changelog = "https://docs.shisho.dev/changelog/";
description = "Lightweight static analyzer for several programming languages";
mainProgram = "shisho";
longDescription = ''
Shisho is a lightweight static code analyzer designed for developers and
is the core engine for Shisho products. It is, so to speak, like a
pluggable and configurable linter; it gives developers a way to codify
your domain knowledge over your code as rules. With powerful automation
and integration capabilities, the rules will help you find and fix issues
semiautomatically.
'';
license = licenses.agpl3Only;
maintainers = with maintainers; [ jk ];
};
}