Files

32 lines
762 B
Nix

{
buildGoModule,
fetchFromGitHub,
lib,
}:
buildGoModule (finalAttrs: {
pname = "sshchecker";
version = "1.0";
src = fetchFromGitHub {
owner = "lazytools";
repo = "sshchecker";
rev = "v${finalAttrs.version}";
hash = "sha256-QMc64ynPLHQGsmDOsoChgmqmpRDyMYmmSAPwAEFBK40=";
};
vendorHash = "sha256-U5nZbo2iSKP3BnxT4lkR75QutcxZB5YLzXxT045TDaY=";
meta = {
description = "Dedicated SSH brute-forcing tool";
mainProgram = "sshchecker";
longDescription = ''
sshchecker is a fast dedicated SSH brute-forcing tool to check
SSH login on the giving IP list.
'';
homepage = "https://github.com/lazytools/sshchecker";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
})