Merge pull request #286167 from fabaff/np

np: init at 0.11.0
This commit is contained in:
Fabian Affolter 2024-02-05 20:17:43 +01:00 committed by GitHub
commit 04b99c67ca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,32 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "np";
version = "0.11.0";
src = fetchFromGitHub {
owner = "leesoh";
repo = "np";
rev = "refs/tags/v${version}";
hash = "sha256-4krjQi/zEC4a+CjacgbnQIMKKFVr6H2FSwRVB6pkHf0=";
};
vendorHash = "sha256-rSg4YFLZdtyC/tm/EULyt7r0O9PXI72W8y6/ltDSbj4=";
ldflags = [
"-s"
"-w"
];
meta = with lib; {
description = "A tool to parse, deduplicate, and query multiple port scans";
homepage = "https://github.com/leesoh/np";
changelog = "https://github.com/leesoh/np/releases/tag/v${version}";
license = licenses.agpl3Only;
maintainers = with maintainers; [ fab ];
mainProgram = "np";
};
}