10 stdenv.mkDerivation rec {
15 url = "mirror://sourceforge/sshguard/${pname}-${version}.tar.gz";
16 sha256 = "sha256-ZAKd7/bekP3u+x9JfUFPDkBFB2aTqR2hpw63WV6X7+s=";
27 configureFlags = [ "--sysconfdir=/etc" ];
30 description = "Protects hosts from brute-force attacks";
31 mainProgram = "sshguard";
33 SSHGuard can read log messages from various input sources. Log messages are parsed, line-by-line, for recognized patterns.
34 If an attack, such as several login failures within a few seconds, is detected, the offending IP is blocked.
36 homepage = "https://sshguard.net";
37 license = licenses.bsd3;
38 maintainers = with maintainers; [ sargon ];
39 platforms = with platforms; linux ++ darwin ++ freebsd ++ netbsd ++ openbsd;