2014-08-02 03:11:09 +02:00
|
|
|
{ stdenv, fetchurl, python, pythonPackages, unzip, systemd, gamin }:
|
2012-05-17 00:58:49 +02:00
|
|
|
|
2014-08-02 03:11:09 +02:00
|
|
|
let version = "0.9"; in
|
2012-05-17 00:58:49 +02:00
|
|
|
|
|
|
|
pythonPackages.buildPythonPackage {
|
|
|
|
name = "fail2ban-${version}";
|
2012-05-17 15:43:11 +02:00
|
|
|
namePrefix = "";
|
2012-05-17 00:58:49 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-09-07 02:49:38 +02:00
|
|
|
url = "https://github.com/fail2ban/fail2ban/zipball/${version}";
|
|
|
|
name = "fail2ban-${version}.zip";
|
2014-08-02 03:11:09 +02:00
|
|
|
sha256 = "0dawl0vvdvpnkg1hc4l0c8sj8ikcr2l48d6khfx0174nq8yfcg93";
|
2012-05-17 00:58:49 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
|
2014-08-02 03:11:09 +02:00
|
|
|
pythonPath = [ systemd python.modules.sqlite3 gamin ];
|
2012-05-17 15:43:11 +02:00
|
|
|
|
2013-09-07 02:49:38 +02:00
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace setup.cfg \
|
|
|
|
--replace /usr $out
|
|
|
|
|
|
|
|
substituteInPlace setup.py \
|
2013-10-15 18:36:45 +02:00
|
|
|
--replace /usr $out \
|
2013-09-07 02:49:38 +02:00
|
|
|
--replace /etc $out/etc \
|
|
|
|
--replace /var $TMPDIR/var \
|
|
|
|
|
|
|
|
for i in fail2ban-client fail2ban-regex fail2ban-server; do
|
|
|
|
substituteInPlace $i \
|
|
|
|
--replace /usr/share/fail2ban $out/share/fail2ban
|
|
|
|
done
|
2013-10-15 18:36:45 +02:00
|
|
|
|
2013-09-07 02:49:38 +02:00
|
|
|
for i in config/action.d/sendmail*.conf; do
|
|
|
|
substituteInPlace $i \
|
|
|
|
--replace /usr/sbin/sendmail sendmail \
|
|
|
|
--replace /usr/bin/whois whois
|
|
|
|
done
|
|
|
|
'';
|
2012-05-17 00:58:49 +02:00
|
|
|
|
|
|
|
doCheck = false;
|
2013-10-15 18:36:45 +02:00
|
|
|
|
2013-09-07 02:49:38 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://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;
|
|
|
|
maintainers = with maintainers; [ eelco lovek323 ];
|
2013-11-04 20:25:20 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2012-05-17 00:58:49 +02:00
|
|
|
};
|
|
|
|
}
|