2015-12-13 16:53:07 +00:00
|
|
|
{ stdenv, fetchzip, python, pythonPackages, unzip, gamin }:
|
2012-05-16 22:58:49 +00:00
|
|
|
|
2014-11-15 16:54:40 +00:00
|
|
|
let version = "0.9.1"; in
|
2012-05-16 22:58:49 +00:00
|
|
|
|
|
|
|
pythonPackages.buildPythonPackage {
|
|
|
|
name = "fail2ban-${version}";
|
2012-05-17 13:43:11 +00:00
|
|
|
namePrefix = "";
|
2012-05-16 22:58:49 +00:00
|
|
|
|
2015-05-24 15:01:06 +00:00
|
|
|
src = fetchzip {
|
|
|
|
name = "fail2ban-${version}-src";
|
|
|
|
url = "https://github.com/fail2ban/fail2ban/archive/${version}.tar.gz";
|
|
|
|
sha256 = "111xvy2gxwn868kn0zy2fmdfa423z6fk57i7wsfrc0l74p1cdvs5";
|
2012-05-16 22:58:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
|
2015-12-13 16:53:07 +00:00
|
|
|
propagatedBuildInputs = [ python.modules.sqlite3 gamin ]
|
|
|
|
++ (stdenv.lib.optional stdenv.isLinux pythonPackages.systemd);
|
2012-05-17 13:43:11 +00:00
|
|
|
|
2013-09-07 00:49:38 +00:00
|
|
|
preConfigure = ''
|
|
|
|
for i in fail2ban-client fail2ban-regex fail2ban-server; do
|
|
|
|
substituteInPlace $i \
|
|
|
|
--replace /usr/share/fail2ban $out/share/fail2ban
|
|
|
|
done
|
2013-10-15 16:36:45 +00:00
|
|
|
|
2013-09-07 00:49:38 +00: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-16 22:58:49 +00:00
|
|
|
|
|
|
|
doCheck = false;
|
2013-10-15 16:36:45 +00:00
|
|
|
|
2015-12-13 16:36:21 +00:00
|
|
|
preInstall = ''
|
|
|
|
# see https://github.com/NixOS/nixpkgs/issues/4968
|
|
|
|
${python}/bin/${python.executable} setup.py install_data --install-dir=$out --root=$out
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = let
|
|
|
|
sitePackages = "$out/lib/${python.libPrefix}/site-packages";
|
|
|
|
in ''
|
|
|
|
# see https://github.com/NixOS/nixpkgs/issues/4968
|
|
|
|
rm -rf ${sitePackages}/etc ${sitePackages}/usr ${sitePackages}/var;
|
|
|
|
'';
|
|
|
|
|
2013-09-07 00:49:38 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.fail2ban.org/;
|
2012-05-16 22:58:49 +00:00
|
|
|
description = "A program that scans log files for repeated failing login attempts and bans IP addresses";
|
2013-09-07 00:49:38 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ eelco lovek323 ];
|
2013-11-04 19:25:20 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2012-05-16 22:58:49 +00:00
|
|
|
};
|
|
|
|
}
|