nixpkgs/pkgs/tools/security/sshguard/default.nix

30 lines
971 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, autoreconfHook, bison, flex}:
2017-03-07 15:50:33 +00:00
stdenv.mkDerivation rec {
2020-08-31 04:47:35 +00:00
version = "2.4.1";
pname = "sshguard";
2017-03-07 15:50:33 +00:00
src = fetchurl {
url = "mirror://sourceforge/sshguard/${pname}-${version}.tar.gz";
2020-08-31 04:47:35 +00:00
sha256 = "0rrwmx91ifvc61wkld8gjkmfsq0ixxmf7m8fg4addkkxwvk04pc7";
2017-03-07 15:50:33 +00:00
};
doCheck = true;
nativeBuildInputs = [ autoreconfHook bison flex ];
2017-03-07 15:50:33 +00:00
configureFlags = [ "--sysconfdir=/etc" ];
meta = with lib; {
description = "Protects hosts from brute-force attacks";
2017-03-07 15:50:33 +00: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.
'';
homepage = "https://sshguard.net";
2017-03-07 15:50:33 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ sargon ];
platforms = with platforms; linux ++ darwin ++ freebsd ++ netbsd ++ openbsd;
};
}