mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
nagelfar: init at 1.3.3
This commit is contained in:
parent
5236562720
commit
a181c29f91
34
pkgs/development/tools/nagelfar/default.nix
Normal file
34
pkgs/development/tools/nagelfar/default.nix
Normal file
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
@ -9009,6 +9009,8 @@ with pkgs;
|
||||
pythonPackages = python3Packages;
|
||||
};
|
||||
|
||||
nagelfar = callPackage ../development/tools/nagelfar { };
|
||||
|
||||
nats-top = callPackage ../tools/system/nats-top { };
|
||||
|
||||
natscli = callPackage ../tools/system/natscli { };
|
||||
|
Loading…
Reference in New Issue
Block a user