summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2020-01-10 15:32:36 -0600
committerWill Dietz <w@wdtz.org>2020-01-10 23:58:41 -0600
commitf4f3213b5780d0d3485aaad314b8a2e276b8a9b2 (patch)
tree37199a02beae534c43bfe0e5137c87c45ab02337 /pkgs/tools
parent5961f211f3bcc28f878975489690013ee3e18be6 (diff)
downloadnixpkgs-f4f3213b5780d0d3485aaad314b8a2e276b8a9b2.tar
nixpkgs-f4f3213b5780d0d3485aaad314b8a2e276b8a9b2.tar.gz
nixpkgs-f4f3213b5780d0d3485aaad314b8a2e276b8a9b2.tar.bz2
nixpkgs-f4f3213b5780d0d3485aaad314b8a2e276b8a9b2.tar.lz
nixpkgs-f4f3213b5780d0d3485aaad314b8a2e276b8a9b2.tar.xz
nixpkgs-f4f3213b5780d0d3485aaad314b8a2e276b8a9b2.tar.zst
nixpkgs-f4f3213b5780d0d3485aaad314b8a2e276b8a9b2.zip
fail2ban: 0.10.4 -> 0.10.5
https://github.com/fail2ban/fail2ban/blob/0.10.5/ChangeLog

Drop included patch.
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/security/fail2ban/default.nix15
1 files changed, 3 insertions, 12 deletions
diff --git a/pkgs/tools/security/fail2ban/default.nix b/pkgs/tools/security/fail2ban/default.nix
index 5ea91854282..4ec84353e4e 100644
--- a/pkgs/tools/security/fail2ban/default.nix
+++ b/pkgs/tools/security/fail2ban/default.nix
@@ -1,6 +1,6 @@
-{ stdenv, fetchFromGitHub, fetchpatch, python3, gamin }:
+{ stdenv, fetchFromGitHub, python3, gamin }:
 
-let version = "0.10.4"; in
+let version = "0.10.5"; in
 
 python3.pkgs.buildPythonApplication {
   pname = "fail2ban";
@@ -10,18 +10,9 @@ python3.pkgs.buildPythonApplication {
     owner  = "fail2ban";
     repo   = "fail2ban";
     rev    = version;
-    sha256 = "07ik6rm856q0ic2r7vbg6j3hsdcdgkv44hh5ck0c2y21fqwrck3l";
+    sha256 = "1s8g46vkwhqnagj69v4wvcasypzkmq7awhfbxahffrypcpad5ach";
   };
 
-  patches = [
-    # 0.10.3 supports Python 3 but somehow this got into the way
-    # https://github.com/fail2ban/fail2ban/issues/2255
-    (fetchpatch {
-      url = "https://github.com/fail2ban/fail2ban/commit/657b147c0d7830f3600f3dc7feaa4815a7e19fde.patch";
-      sha256 = "1hrk2x7ssrfhab1wrjk5xw1sxhiv2735glfcp6qcj8x4dss3q7f7";
-    })
-  ];
-
   pythonPath = with python3.pkgs;
     stdenv.lib.optionals stdenv.isLinux [
       systemd