about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2020-01-31 08:58:58 +0000
committerGitHub <noreply@github.com>2020-01-31 08:58:58 +0000
commitc23f10da6a6bdfbfe4950d3c5fd741704cbe7188 (patch)
tree3e0c4f2f44df480de16c02fad4ae8b4d951e0378 /pkgs
parenta5a93e6873e0af1c45c562fc4d2ccec629b2ef26 (diff)
parent96e2669114ce92be090b5348ba3e1f2d0d58366f (diff)
downloadnixlib-c23f10da6a6bdfbfe4950d3c5fd741704cbe7188.tar
nixlib-c23f10da6a6bdfbfe4950d3c5fd741704cbe7188.tar.gz
nixlib-c23f10da6a6bdfbfe4950d3c5fd741704cbe7188.tar.bz2
nixlib-c23f10da6a6bdfbfe4950d3c5fd741704cbe7188.tar.lz
nixlib-c23f10da6a6bdfbfe4950d3c5fd741704cbe7188.tar.xz
nixlib-c23f10da6a6bdfbfe4950d3c5fd741704cbe7188.tar.zst
nixlib-c23f10da6a6bdfbfe4950d3c5fd741704cbe7188.zip
fail2ban: 0.10.5 -> 0.11.1 (#67931)
fail2ban: 0.10.5 -> 0.11.1
Diffstat (limited to 'pkgs')
-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 ];