2021-03-14 10:50:12 -07:00
|
|
|
{ lib, stdenv, fetchurl, autoreconfHook, bison, flex}:
|
2017-03-07 07:50:33 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-08-30 21:47:35 -07:00
|
|
|
version = "2.4.1";
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "sshguard";
|
2017-03-07 07:50:33 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "mirror://sourceforge/sshguard/${pname}-${version}.tar.gz";
|
2020-08-30 21:47:35 -07:00
|
|
|
sha256 = "0rrwmx91ifvc61wkld8gjkmfsq0ixxmf7m8fg4addkkxwvk04pc7";
|
2017-03-07 07:50:33 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2021-03-14 10:50:12 -07:00
|
|
|
nativeBuildInputs = [ autoreconfHook bison flex ];
|
2017-03-07 07:50:33 -08:00
|
|
|
|
|
|
|
configureFlags = [ "--sysconfdir=/etc" ];
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-10-25 21:08:40 -07:00
|
|
|
description = "Protects hosts from brute-force attacks";
|
2017-03-07 07:50:33 -08:00
|
|
|
longDescription = ''
|
|
|
|
SSHGuard can read log messages from various input sources. Log messages are parsed, line-by-line, for recognized patterns.
|
|
|
|
If an attack, such as several login failures within a few seconds, is detected, the offending IP is blocked.
|
|
|
|
'';
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://sshguard.net";
|
2017-03-07 07:50:33 -08:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ sargon ];
|
|
|
|
platforms = with platforms; linux ++ darwin ++ freebsd ++ netbsd ++ openbsd;
|
|
|
|
};
|
|
|
|
}
|