nixpkgs/pkgs/by-name/np/np/package.nix
Fabian Affolter 85da7aca82 np: init at 0.11.0
A tool to parse, deduplicate, and query multiple port scans

https://github.com/leesoh/np
2024-02-03 23:19:06 +01:00

33 lines
716 B
Nix

{ 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";
};
}