7fc3e0e0cf
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/fail2ban/versions. These checks were done: - built on NixOS - ran ‘/nix/store/iwbizr0g8f6wb5243l5730sdgb3nbjqk-fail2ban-0.10.3.1/bin/fail2ban-python -h’ got 0 exit code - ran ‘/nix/store/iwbizr0g8f6wb5243l5730sdgb3nbjqk-fail2ban-0.10.3.1/bin/fail2ban-python --help’ got 0 exit code - ran ‘/nix/store/iwbizr0g8f6wb5243l5730sdgb3nbjqk-fail2ban-0.10.3.1/bin/.fail2ban-client-wrapped -h’ got 0 exit code - ran ‘/nix/store/iwbizr0g8f6wb5243l5730sdgb3nbjqk-fail2ban-0.10.3.1/bin/.fail2ban-client-wrapped --help’ got 0 exit code - ran ‘/nix/store/iwbizr0g8f6wb5243l5730sdgb3nbjqk-fail2ban-0.10.3.1/bin/fail2ban-client -h’ got 0 exit code - ran ‘/nix/store/iwbizr0g8f6wb5243l5730sdgb3nbjqk-fail2ban-0.10.3.1/bin/fail2ban-client --help’ got 0 exit code - ran ‘/nix/store/iwbizr0g8f6wb5243l5730sdgb3nbjqk-fail2ban-0.10.3.1/bin/.fail2ban-regex-wrapped -h’ got 0 exit code - ran ‘/nix/store/iwbizr0g8f6wb5243l5730sdgb3nbjqk-fail2ban-0.10.3.1/bin/.fail2ban-regex-wrapped --help’ got 0 exit code - ran ‘/nix/store/iwbizr0g8f6wb5243l5730sdgb3nbjqk-fail2ban-0.10.3.1/bin/fail2ban-regex -h’ got 0 exit code - ran ‘/nix/store/iwbizr0g8f6wb5243l5730sdgb3nbjqk-fail2ban-0.10.3.1/bin/fail2ban-regex --help’ got 0 exit code - ran ‘/nix/store/iwbizr0g8f6wb5243l5730sdgb3nbjqk-fail2ban-0.10.3.1/bin/.fail2ban-server-wrapped -h’ got 0 exit code - ran ‘/nix/store/iwbizr0g8f6wb5243l5730sdgb3nbjqk-fail2ban-0.10.3.1/bin/.fail2ban-server-wrapped --help’ got 0 exit code - ran ‘/nix/store/iwbizr0g8f6wb5243l5730sdgb3nbjqk-fail2ban-0.10.3.1/bin/fail2ban-server -h’ got 0 exit code - ran ‘/nix/store/iwbizr0g8f6wb5243l5730sdgb3nbjqk-fail2ban-0.10.3.1/bin/fail2ban-server --help’ got 0 exit code - found 0.10.3.1 with grep in /nix/store/iwbizr0g8f6wb5243l5730sdgb3nbjqk-fail2ban-0.10.3.1 - directory tree listing: https://gist.github.com/3b1b92178d21ce7b05d59b7e88a6620c
50 lines
1.4 KiB
Nix
50 lines
1.4 KiB
Nix
{ stdenv, fetchFromGitHub, python, pythonPackages, gamin }:
|
|
|
|
let version = "0.10.3.1"; in
|
|
|
|
pythonPackages.buildPythonApplication {
|
|
name = "fail2ban-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fail2ban";
|
|
repo = "fail2ban";
|
|
rev = version;
|
|
sha256 = "03gljmqykwwvwxcfhqqfccmnsjhsl93052i38r9mf7hj4jj8v7x5";
|
|
};
|
|
|
|
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 = ''
|
|
substituteInPlace setup.py --replace /usr/share/doc/ share/doc/
|
|
|
|
# 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;
|
|
maintainers = with maintainers; [ eelco lovek323 fpletz ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|