summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorMatthew Justin Bauer <mjbauer95@gmail.com>2018-04-17 12:02:53 -0500
committerGitHub <noreply@github.com>2018-04-17 12:02:53 -0500
commit0247e7e47f9c5dcbfc038e5a68fe472efee0ce6e (patch)
tree5b6147639c6255ad5c1e194597f8f485a473aec5 /pkgs/tools/security
parent10f02ad446d8c452ddd9c4c0314cef4eca11b782 (diff)
parent7fc3e0e0cfd9d5e896a553269d9dad7a65ee2e4a (diff)
downloadnixlib-0247e7e47f9c5dcbfc038e5a68fe472efee0ce6e.tar
nixlib-0247e7e47f9c5dcbfc038e5a68fe472efee0ce6e.tar.gz
nixlib-0247e7e47f9c5dcbfc038e5a68fe472efee0ce6e.tar.bz2
nixlib-0247e7e47f9c5dcbfc038e5a68fe472efee0ce6e.tar.lz
nixlib-0247e7e47f9c5dcbfc038e5a68fe472efee0ce6e.tar.xz
nixlib-0247e7e47f9c5dcbfc038e5a68fe472efee0ce6e.tar.zst
nixlib-0247e7e47f9c5dcbfc038e5a68fe472efee0ce6e.zip
Merge pull request #38734 from r-ryantm/auto-update/fail2ban
fail2ban: 0.10.2 -> 0.10.3.1
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/fail2ban/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/security/fail2ban/default.nix b/pkgs/tools/security/fail2ban/default.nix
index 23061b6962e8..30e8d4303dc1 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.2"; in
+let version = "0.10.3.1"; in
 
 pythonPackages.buildPythonApplication {
   name = "fail2ban-${version}";
@@ -9,7 +9,7 @@ pythonPackages.buildPythonApplication {
     owner  = "fail2ban";
     repo   = "fail2ban";
     rev    = version;
-    sha256 = "1asn9gp0ybz6fak991vki9vln4ijramvr13rbwpxyj5wfmnh05r5";
+    sha256 = "03gljmqykwwvwxcfhqqfccmnsjhsl93052i38r9mf7hj4jj8v7x5";
   };
 
   propagatedBuildInputs = [ gamin ]