summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/security/fail2ban/default.nix
diff options
context:
space:
mode:
authorIzorkin <izorkin@elven.pw>2019-09-02 10:47:03 +0300
committerIzorkin <izorkin@elven.pw>2020-01-29 23:15:56 +0300
commit15b0ae615685d1843ff6d594318e6bfa7d0d1b71 (patch)
tree961208b6eb60210dbbbc79e2321a413c81661b7f /pkgs/tools/security/fail2ban/default.nix
parent274d02e4776d0b8b1884b57e7e6454223a9abb13 (diff)
fail2ban: 0.10.5 -> 0.11.1
Diffstat (limited to 'pkgs/tools/security/fail2ban/default.nix')
-rw-r--r--pkgs/tools/security/fail2ban/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/security/fail2ban/default.nix b/pkgs/tools/security/fail2ban/default.nix
index 4ec84353e4ee..39017d09886e 100644
--- a/pkgs/tools/security/fail2ban/default.nix
+++ b/pkgs/tools/security/fail2ban/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, python3, gamin }:
-let version = "0.10.5"; in
+let version = "0.11.1"; in
python3.pkgs.buildPythonApplication {
pname = "fail2ban";
@@ -10,7 +10,7 @@ python3.pkgs.buildPythonApplication {
owner = "fail2ban";
repo = "fail2ban";
rev = version;
- sha256 = "1s8g46vkwhqnagj69v4wvcasypzkmq7awhfbxahffrypcpad5ach";
+ sha256 = "0kqvkxpb72y3kgmxf6g36w67499c6gcd2a9yyblagwx12y05f1sh";
};
pythonPath = with python3.pkgs;
@@ -50,7 +50,7 @@ python3.pkgs.buildPythonApplication {
'';
meta = with stdenv.lib; {
- homepage = http://www.fail2ban.org/;
+ homepage = https://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 ];