2016-03-22 01:11:25 +00:00
|
|
|
{ stdenv, fetchFromGitHub, python, pythonPackages, gamin }:
|
2012-05-16 23:58:49 +01:00
|
|
|
|
2017-07-31 23:32:15 +01:00
|
|
|
let version = "0.9.7"; in
|
2012-05-16 23:58:49 +01:00
|
|
|
|
2016-02-19 12:12:11 +00:00
|
|
|
pythonPackages.buildPythonApplication {
|
2012-05-16 23:58:49 +01:00
|
|
|
name = "fail2ban-${version}";
|
|
|
|
|
2016-03-22 01:11:25 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fail2ban";
|
|
|
|
repo = "fail2ban";
|
|
|
|
rev = version;
|
2017-07-31 23:32:15 +01:00
|
|
|
sha256 = "07l5pz93mz1r3g59xiyyznlpjfpv2zgvh3h9w0cbn79v7njim8kb";
|
2012-05-16 23:58:49 +01:00
|
|
|
};
|
|
|
|
|
2016-10-06 19:34:35 +01:00
|
|
|
propagatedBuildInputs = [ gamin ]
|
2015-12-13 16:53:07 +00:00
|
|
|
++ (stdenv.lib.optional stdenv.isLinux pythonPackages.systemd);
|
2012-05-17 14:43:11 +01:00
|
|
|
|
2013-09-07 01:49:38 +01:00
|
|
|
preConfigure = ''
|
|
|
|
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 23:58:49 +01:00
|
|
|
|
|
|
|
doCheck = false;
|
2013-10-15 17:36:45 +01: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 01:49:38 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.fail2ban.org/;
|
2012-05-16 23:58:49 +01:00
|
|
|
description = "A program that scans log files for repeated failing login attempts and bans IP addresses";
|
2013-09-07 01:49:38 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2016-03-22 01:11:25 +00:00
|
|
|
maintainers = with maintainers; [ eelco lovek323 fpletz ];
|
2013-11-04 19:25:20 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2012-05-16 23:58:49 +01:00
|
|
|
};
|
|
|
|
}
|