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
47 lines
1019 B
Nix
47 lines
1019 B
Nix
{
|
|
lib,
|
|
fetchurl,
|
|
tcl,
|
|
tclPackages,
|
|
tk,
|
|
}:
|
|
|
|
tcl.mkTclDerivation rec {
|
|
pname = "nagelfar";
|
|
version = "1.3.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://sourceforge.net/projects/nagelfar/files/Rel_${
|
|
lib.replaceString "." "" version
|
|
}/nagelfar${lib.replaceString "." "" version}.tar.gz";
|
|
hash = "sha256-O6+SD7NLc+MgZxGDZdB02FkpjivON0itlFhiS+zoWyM=";
|
|
};
|
|
|
|
buildInputs = [
|
|
tcl
|
|
tclPackages.tcllib
|
|
tk
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm 755 nagelfar.tcl $out/bin/nagelfar
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://nagelfar.sourceforge.net/";
|
|
description = "Static syntax checker (linter) for Tcl";
|
|
longDescription = ''
|
|
Provides static syntax checking, code coverage instrumentation,
|
|
and is very extendable through its syntax database and plugins.
|
|
'';
|
|
mainProgram = "nagelfar";
|
|
license = lib.licenses.gpl3Plus;
|
|
platforms = lib.platforms.all;
|
|
maintainers = [ lib.maintainers.nat-418 ];
|
|
};
|
|
}
|