summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pkgs/development/libraries/cracklib/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/cracklib/default.nix b/pkgs/development/libraries/cracklib/default.nix
index e394c9db4ce..d316b5bf2d1 100644
--- a/pkgs/development/libraries/cracklib/default.nix
+++ b/pkgs/development/libraries/cracklib/default.nix
@@ -1,17 +1,17 @@
 { stdenv, fetchurl, libintlOrEmpty, zlib, gettext }:
 
 stdenv.mkDerivation rec {
-  name = "cracklib-2.9.4";
+  name = "cracklib-2.9.6";
 
   src = fetchurl {
-    url = "mirror://sourceforge/cracklib/${name}.tar.gz";
-    sha256 = "0n49prh5rffl33bxy8qf46cqm6mswdlqpmm6iqi490w0p6s6da7j";
+    url = "https://github.com/cracklib/cracklib/releases/download/${name}/${name}.tar.gz";
+    sha256 = "0hrkb0prf7n92w6rxgq0ilzkk6rkhpys2cfqkrbzswp27na7dkqp";
   };
 
   buildInputs = [ libintlOrEmpty zlib gettext ];
 
   meta = with stdenv.lib; {
-    homepage    = http://sourceforge.net/projects/cracklib;
+    homepage    = https://github.com/cracklib/cracklib;
     description = "A library for checking the strength of passwords";
     maintainers = with maintainers; [ lovek323 ];
     platforms   = platforms.unix;