nixos/uptime-kuma: Add additional lockdown settings to systemd unit (#361452)
[NixPkgs.git] / pkgs / by-name / nm / nmap-formatter / package.nix
blob173514c7fd0be44e3044ab41ddea181f2eaa65b0
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "nmap-formatter";
8   version = "3.0.2";
10   src = fetchFromGitHub {
11     owner = "vdjagilev";
12     repo = pname;
13     rev = "v${version}";
14     hash = "sha256-tB3FPb0k7jJ8RECsT3eLGjVpHqNclOvlh1MgoV6bbwo=";
15   };
17   vendorHash = "sha256-PKoe4rpwPy3omfRRhN70iEJJ/sHliIwxPUHGxRJqrf4=";
19   meta = with lib; {
20     description = "Tool that allows you to convert nmap output";
21     mainProgram = "nmap-formatter";
22     homepage = "https://github.com/vdjagilev/nmap-formatter";
23     changelog = "https://github.com/vdjagilev/nmap-formatter/releases/tag/v${version}";
24     license = licenses.mit;
25     maintainers = with maintainers; [ fab ];
26   };