2020-01-10 22:32:36 +01:00
|
|
|
{ stdenv, fetchFromGitHub, python3, gamin }:
|
2012-05-17 00:58:49 +02:00
|
|
|
|
2019-09-02 09:47:03 +02:00
|
|
|
let version = "0.11.1"; in
|
2012-05-17 00:58:49 +02:00
|
|
|
|
2019-12-14 21:58:10 +01:00
|
|
|
python3.pkgs.buildPythonApplication {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "fail2ban";
|
|
|
|
inherit version;
|
2012-05-17 00:58:49 +02:00
|
|
|
|
2016-03-22 02:11:25 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fail2ban";
|
|
|
|
repo = "fail2ban";
|
|
|
|
rev = version;
|
2019-09-02 09:47:03 +02:00
|
|
|
sha256 = "0kqvkxpb72y3kgmxf6g36w67499c6gcd2a9yyblagwx12y05f1sh";
|
2012-05-17 00:58:49 +02:00
|
|
|
};
|
|
|
|
|
2019-12-14 21:58:10 +01:00
|
|
|
pythonPath = with python3.pkgs;
|
|
|
|
stdenv.lib.optionals stdenv.isLinux [
|
|
|
|
systemd
|
|
|
|
];
|
2012-05-17 15:43:11 +02:00
|
|
|
|
2013-09-07 02:49:38 +02:00
|
|
|
preConfigure = ''
|
|
|
|
for i in config/action.d/sendmail*.conf; do
|
|
|
|
substituteInPlace $i \
|
|
|
|
--replace /usr/sbin/sendmail sendmail \
|
|
|
|
--replace /usr/bin/whois whois
|
|
|
|
done
|
2019-06-21 04:09:04 +02:00
|
|
|
|
|
|
|
substituteInPlace config/filter.d/dovecot.conf \
|
|
|
|
--replace dovecot.service dovecot2.service
|
2013-09-07 02:49:38 +02:00
|
|
|
'';
|
2012-05-17 00:58:49 +02:00
|
|
|
|
|
|
|
doCheck = false;
|
2013-10-15 18:36:45 +02:00
|
|
|
|
2015-12-13 17:36:21 +01:00
|
|
|
preInstall = ''
|
2018-03-25 16:14:48 +02:00
|
|
|
substituteInPlace setup.py --replace /usr/share/doc/ share/doc/
|
2018-10-14 16:26:38 +02:00
|
|
|
|
2015-12-13 17:36:21 +01:00
|
|
|
# see https://github.com/NixOS/nixpkgs/issues/4968
|
2019-12-14 21:58:10 +01:00
|
|
|
${python3.interpreter} setup.py install_data --install-dir=$out --root=$out
|
2015-12-13 17:36:21 +01:00
|
|
|
'';
|
|
|
|
|
2020-01-02 10:39:50 +01:00
|
|
|
postPatch = ''
|
|
|
|
${stdenv.shell} ./fail2ban-2to3
|
|
|
|
'';
|
|
|
|
|
2015-12-13 17:36:21 +01:00
|
|
|
postInstall = let
|
2019-12-14 21:58:10 +01:00
|
|
|
sitePackages = "$out/${python3.sitePackages}";
|
2015-12-13 17:36:21 +01:00
|
|
|
in ''
|
|
|
|
# see https://github.com/NixOS/nixpkgs/issues/4968
|
|
|
|
rm -rf ${sitePackages}/etc ${sitePackages}/usr ${sitePackages}/var;
|
|
|
|
'';
|
|
|
|
|
2013-09-07 02:49:38 +02:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.fail2ban.org/";
|
2012-05-17 00:58:49 +02:00
|
|
|
description = "A program that scans log files for repeated failing login attempts and bans IP addresses";
|
2013-09-07 02:49:38 +02:00
|
|
|
license = licenses.gpl2Plus;
|
2016-03-22 02:11:25 +01:00
|
|
|
maintainers = with maintainers; [ eelco lovek323 fpletz ];
|
2013-11-04 20:25:20 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2012-05-17 00:58:49 +02:00
|
|
|
};
|
|
|
|
}
|