mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
fingerprintx: init at 1.1.8
This commit is contained in:
parent
fe2ecaf706
commit
e18ccd43ad
34
pkgs/tools/security/fingerprintx/default.nix
Normal file
34
pkgs/tools/security/fingerprintx/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -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; });
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user