summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-08-08 09:51:01 +0200
committerPeter Simons <simons@cryp.to>2014-08-08 09:51:01 +0200
commit9226fbf56a28bcc43ceb73773e12fa1e5c3edaa2 (patch)
treee61a7de75f426c942f91da2b0828149631d92957 /pkgs/tools/security
parent5c276c4f68125e7d53e0467a3e74969dbd05b51b (diff)
parentbdf5f45356afd6f4289e5e1f497a48c3dc54b38c (diff)
downloadnixpkgs-9226fbf56a28bcc43ceb73773e12fa1e5c3edaa2.tar
nixpkgs-9226fbf56a28bcc43ceb73773e12fa1e5c3edaa2.tar.gz
nixpkgs-9226fbf56a28bcc43ceb73773e12fa1e5c3edaa2.tar.bz2
nixpkgs-9226fbf56a28bcc43ceb73773e12fa1e5c3edaa2.tar.lz
nixpkgs-9226fbf56a28bcc43ceb73773e12fa1e5c3edaa2.tar.xz
nixpkgs-9226fbf56a28bcc43ceb73773e12fa1e5c3edaa2.tar.zst
nixpkgs-9226fbf56a28bcc43ceb73773e12fa1e5c3edaa2.zip
Merge remote-tracking branch 'origin/master' into staging.
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/fail2ban/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/security/fail2ban/default.nix b/pkgs/tools/security/fail2ban/default.nix
index 8d6a6241ad3..6b5c69c3d2e 100644
--- a/pkgs/tools/security/fail2ban/default.nix
+++ b/pkgs/tools/security/fail2ban/default.nix
@@ -1,6 +1,6 @@
-{ stdenv, fetchurl, pythonPackages, unzip, gamin }:
+{ stdenv, fetchurl, python, pythonPackages, unzip, systemd, gamin }:
 
-let version = "0.8.13"; in
+let version = "0.9"; in
 
 pythonPackages.buildPythonPackage {
   name = "fail2ban-${version}";
@@ -9,12 +9,12 @@ pythonPackages.buildPythonPackage {
   src = fetchurl {
     url    = "https://github.com/fail2ban/fail2ban/zipball/${version}";
     name   = "fail2ban-${version}.zip";
-    sha256 = "0c63i5jsn2n6hv6fb6q922ksxfpppah9415vpydiv0vpf23pq0cb";
+    sha256 = "0dawl0vvdvpnkg1hc4l0c8sj8ikcr2l48d6khfx0174nq8yfcg93";
   };
 
   buildInputs = [ unzip ];
 
-  pythonPath = [ gamin ];
+  pythonPath = [ systemd python.modules.sqlite3 gamin ];
 
   preConfigure = ''
     substituteInPlace setup.cfg \