1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/security/fail2ban/default.nix

48 lines
1.4 KiB
Nix
Raw Normal View History

2016-03-22 01:11:25 +00:00
{ stdenv, fetchFromGitHub, python, pythonPackages, gamin }:
2017-02-02 18:17:57 +00:00
let version = "0.9.6"; in
pythonPackages.buildPythonApplication {
name = "fail2ban-${version}";
2016-03-22 01:11:25 +00:00
src = fetchFromGitHub {
owner = "fail2ban";
repo = "fail2ban";
rev = version;
2017-02-02 18:17:57 +00:00
sha256 = "1a75xjjqhn98zd9i51k15vjvcy0ql0gmcv9xf8pbd0bpvblgdah8";
};
2016-10-06 19:34:35 +01:00
propagatedBuildInputs = [ gamin ]
++ (stdenv.lib.optional stdenv.isLinux pythonPackages.systemd);
preConfigure = ''
for i in config/action.d/sendmail*.conf; do
substituteInPlace $i \
--replace /usr/sbin/sendmail sendmail \
--replace /usr/bin/whois whois
done
'';
doCheck = false;
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;
'';
meta = with stdenv.lib; {
homepage = http://www.fail2ban.org/;
description = "A program that scans log files for repeated failing login attempts and bans IP addresses";
license = licenses.gpl2Plus;
2016-03-22 01:11:25 +00:00
maintainers = with maintainers; [ eelco lovek323 fpletz ];
platforms = platforms.linux ++ platforms.darwin;
};
}