about summary refs log tree commit diff
path: root/pkgs/tools/security/fail2ban
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2017-02-02 19:17:57 +0100
committerRobin Gloster <mail@glob.in>2017-02-02 19:19:28 +0100
commit209d453bfb4f7e7ebc53e13f97f40e2859fd1456 (patch)
treee57c06c3f28ea60537f09dcb57b4fcbac0408049 /pkgs/tools/security/fail2ban
parentbd3ac6938bb4e1d1d24fc7c2add6a8e1918aac7e (diff)
fail2ban: 0.9.4 -> 0.9.6
Diffstat (limited to 'pkgs/tools/security/fail2ban')
-rw-r--r--pkgs/tools/security/fail2ban/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/tools/security/fail2ban/default.nix b/pkgs/tools/security/fail2ban/default.nix
index 695bfcce3a591..e7a052c90f1c3 100644
--- a/pkgs/tools/security/fail2ban/default.nix
+++ b/pkgs/tools/security/fail2ban/default.nix
@@ -1,16 +1,15 @@
 { stdenv, fetchFromGitHub, python, pythonPackages, gamin }:
 
-let version = "0.9.4"; in
+let version = "0.9.6"; in
 
 pythonPackages.buildPythonApplication {
   name = "fail2ban-${version}";
-  namePrefix = "";
 
   src = fetchFromGitHub {
     owner  = "fail2ban";
     repo   = "fail2ban";
     rev    = version;
-    sha256 = "1m8gqj35kwrn30rqwd488sgakaisz22xa5v9llvz6gwf4f7ps0a9";
+    sha256 = "1a75xjjqhn98zd9i51k15vjvcy0ql0gmcv9xf8pbd0bpvblgdah8";
   };
 
   propagatedBuildInputs = [ gamin ]