about summary refs log tree commit diff
path: root/pkgs/development/tools/nagelfar/default.nix
blob: e770d162dc47b55ac07d4c4994dcb7966ec56063 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ lib, fetchzip, tcl, tcllib, 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
    tcllib
    tk
  ];

  installPhase = ''
    install -Dm 755 $src/nagelfar.tcl $out/bin/nagelfar
  '';

  meta = with lib; {
    homepage = "https://nagelfar.sourceforge.net/";
    description = "A 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 ];
  };
}