mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
commit
04b99c67ca
32
pkgs/by-name/np/np/package.nix
Normal file
32
pkgs/by-name/np/np/package.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user