2019-12-14 12:58:10 -08:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch, python3, gamin }:
|
2012-05-16 15:58:49 -07:00
|
|
|
|
2018-10-14 07:26:38 -07:00
|
|
|
let version = "0.10.4"; in
|
2012-05-16 15:58:49 -07:00
|
|
|
|
2019-12-14 12:58:10 -08:00
|
|
|
python3.pkgs.buildPythonApplication {
|
2019-08-13 14:52:01 -07:00
|
|
|
pname = "fail2ban";
|
|
|
|
inherit version;
|
2012-05-16 15:58:49 -07:00
|
|
|
|
2016-03-21 18:11:25 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fail2ban";
|
|
|
|
repo = "fail2ban";
|
|
|
|
rev = version;
|
2018-10-14 07:26:38 -07:00
|
|
|
sha256 = "07ik6rm856q0ic2r7vbg6j3hsdcdgkv44hh5ck0c2y21fqwrck3l";
|
2012-05-16 15:58:49 -07:00
|
|
|
};
|
|
|
|
|
2019-12-14 12:58:10 -08:00
|
|
|
patches = [
|
|
|
|
# 0.10.3 supports Python 3 but somehow this got into the way
|
|
|
|
# https://github.com/fail2ban/fail2ban/issues/2255
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/fail2ban/fail2ban/commit/657b147c0d7830f3600f3dc7feaa4815a7e19fde.patch";
|
|
|
|
sha256 = "1hrk2x7ssrfhab1wrjk5xw1sxhiv2735glfcp6qcj8x4dss3q7f7";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonPath = with python3.pkgs;
|
|
|
|
stdenv.lib.optionals stdenv.isLinux [
|
|
|
|
systemd
|
|
|
|
];
|
2012-05-17 06:43:11 -07:00
|
|
|
|
2013-09-06 17:49:38 -07: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-20 19:09:04 -07:00
|
|
|
|
|
|
|
substituteInPlace config/filter.d/dovecot.conf \
|
|
|
|
--replace dovecot.service dovecot2.service
|
2013-09-06 17:49:38 -07:00
|
|
|
'';
|
2012-05-16 15:58:49 -07:00
|
|
|
|
|
|
|
doCheck = false;
|
2013-10-15 09:36:45 -07:00
|
|
|
|
2015-12-13 08:36:21 -08:00
|
|
|
preInstall = ''
|
2018-03-25 07:14:48 -07:00
|
|
|
substituteInPlace setup.py --replace /usr/share/doc/ share/doc/
|
2018-10-14 07:26:38 -07:00
|
|
|
|
2015-12-13 08:36:21 -08:00
|
|
|
# see https://github.com/NixOS/nixpkgs/issues/4968
|
2019-12-14 12:58:10 -08:00
|
|
|
${python3.interpreter} setup.py install_data --install-dir=$out --root=$out
|
2015-12-13 08:36:21 -08:00
|
|
|
'';
|
|
|
|
|
2020-01-02 01:39:50 -08:00
|
|
|
postPatch = ''
|
|
|
|
${stdenv.shell} ./fail2ban-2to3
|
|
|
|
'';
|
|
|
|
|
2015-12-13 08:36:21 -08:00
|
|
|
postInstall = let
|
2019-12-14 12:58:10 -08:00
|
|
|
sitePackages = "$out/${python3.sitePackages}";
|
2015-12-13 08:36:21 -08:00
|
|
|
in ''
|
|
|
|
# see https://github.com/NixOS/nixpkgs/issues/4968
|
|
|
|
rm -rf ${sitePackages}/etc ${sitePackages}/usr ${sitePackages}/var;
|
|
|
|
'';
|
|
|
|
|
2013-09-06 17:49:38 -07:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.fail2ban.org/;
|
2012-05-16 15:58:49 -07:00
|
|
|
description = "A program that scans log files for repeated failing login attempts and bans IP addresses";
|
2013-09-06 17:49:38 -07:00
|
|
|
license = licenses.gpl2Plus;
|
2016-03-21 18:11:25 -07:00
|
|
|
maintainers = with maintainers; [ eelco lovek323 fpletz ];
|
2013-11-04 11:25:20 -08:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2012-05-16 15:58:49 -07:00
|
|
|
};
|
|
|
|
}
|