depot/pkgs/development/tools/nagelfar/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

34 lines
885 B
Nix

{ lib, fetchzip, tcl, tclPackages, tk, }:
tcl.mkTclDerivation {
pname = "nagelfar";
version = "1.3.3";
src = fetchzip {
url = "https://sourceforge.net/projects/nagelfar/files/Rel_133/nagelfar133.tar.gz";
sha256 = "sha256-bdH53LSOKMwq53obVQitl7bpaSpwvMce8oJgg/GKrg0=";
};
buildInputs = [
tcl
tclPackages.tcllib
tk
];
installPhase = ''
install -Dm 755 $src/nagelfar.tcl $out/bin/nagelfar
'';
meta = with lib; {
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 = licenses.gpl3Plus;
platforms = platforms.all;
maintainers = [ maintainers.nat-418 ];
};
}