nixpkgs/pkgs/tools/security/nmap-formatter/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
669 B
Nix
Raw Normal View History

2021-09-03 19:35:28 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "nmap-formatter";
2022-12-04 11:23:34 +00:00
version = "2.0.4";
2021-09-03 19:35:28 +00:00
src = fetchFromGitHub {
owner = "vdjagilev";
repo = pname;
rev = "v${version}";
2022-12-04 11:23:34 +00:00
hash = "sha256-UIGXstgQMBMept9W+HhyE30WYWleaU9bUTX5frctrS8=";
2021-09-03 19:35:28 +00:00
};
2022-12-04 11:23:34 +00:00
vendorSha256 = "sha256-VX/JVqCKhjBq67D7juHdgpzBgSjOHn0Pbmx9s04tinw=";
2021-09-03 19:35:28 +00:00
meta = with lib; {
description = "Tool that allows you to convert nmap output";
homepage = "https://github.com/vdjagilev/nmap-formatter";
2022-11-22 20:45:15 +00:00
changelog = "https://github.com/vdjagilev/nmap-formatter/releases/tag/v${version}";
2021-09-03 19:35:28 +00:00
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}