summary refs log tree commit diff
path: root/pkgs/tools/security/fail2ban
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2018-10-14 10:26:38 -0400
committerTim Steinbach <tim@nequissimus.com>2018-10-14 10:27:04 -0400
commit562866e64fd3357e24ee5f56921f38c74ecb2001 (patch)
tree9507a8fb1dc13aa4167462b3731240e9a47378ef /pkgs/tools/security/fail2ban
parent9cae5814e04726bf0beb0bd91b6e613742ae5dbc (diff)
downloadnixpkgs-562866e64fd3357e24ee5f56921f38c74ecb2001.tar
nixpkgs-562866e64fd3357e24ee5f56921f38c74ecb2001.tar.gz
nixpkgs-562866e64fd3357e24ee5f56921f38c74ecb2001.tar.bz2
nixpkgs-562866e64fd3357e24ee5f56921f38c74ecb2001.tar.lz
nixpkgs-562866e64fd3357e24ee5f56921f38c74ecb2001.tar.xz
nixpkgs-562866e64fd3357e24ee5f56921f38c74ecb2001.tar.zst
nixpkgs-562866e64fd3357e24ee5f56921f38c74ecb2001.zip
fail2ban: 0.10.3.1 -> 0.10.4
Diffstat (limited to 'pkgs/tools/security/fail2ban')
-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 30e8d4303dc..6b1d8e6c4f8 100644
--- a/pkgs/tools/security/fail2ban/default.nix
+++ b/pkgs/tools/security/fail2ban/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchFromGitHub, python, pythonPackages, gamin }:
 
-let version = "0.10.3.1"; in
+let version = "0.10.4"; in
 
 pythonPackages.buildPythonApplication {
   name = "fail2ban-${version}";
@@ -9,7 +9,7 @@ pythonPackages.buildPythonApplication {
     owner  = "fail2ban";
     repo   = "fail2ban";
     rev    = version;
-    sha256 = "03gljmqykwwvwxcfhqqfccmnsjhsl93052i38r9mf7hj4jj8v7x5";
+    sha256 = "07ik6rm856q0ic2r7vbg6j3hsdcdgkv44hh5ck0c2y21fqwrck3l";
   };
 
   propagatedBuildInputs = [ gamin ]
@@ -27,7 +27,7 @@ pythonPackages.buildPythonApplication {
 
   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
   '';