fingerprintx: init at 1.1.8

This commit is contained in:
Fabian Affolter 2023-04-18 14:36:57 +02:00
parent fe2ecaf706
commit e18ccd43ad
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "fingerprintx";
version = "1.1.8";
src = fetchFromGitHub {
owner = "praetorian-inc";
repo = "fingerprintx";
rev = "refs/tags/v${version}";
hash = "sha256-CzKaMRPs31Pt/vyLoQ4GrUP31s6zpnEk/p7x3FS4AAg=";
};
vendorHash = "sha256-wpqn2Gq/sGBBVIJRiwGc+6fnNJuKRlokb94bKH03oKc=";
ldflags = [
"-s"
"-w"
];
# Tests require network access
doCheck = false;
meta = with lib; {
description = "Standalone utility for service discovery on open ports";
homepage = "https://github.com/praetorian-inc/fingerprintx";
changelog = "https://github.com/praetorian-inc/fingerprintx/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -7425,6 +7425,8 @@ with pkgs;
zig = zig_0_9; zig = zig_0_9;
}; };
fingerprintx = callPackage ../tools/security/fingerprintx { };
bsd-finger = callPackage ../tools/networking/bsd-finger { }; bsd-finger = callPackage ../tools/networking/bsd-finger { };
bsd-fingerd = bsd-finger.override({ buildClient = false; }); bsd-fingerd = bsd-finger.override({ buildClient = false; });