2015-04-07 19:50:36 +00:00
|
|
|
{ stdenv, fetchurl, libintlOrEmpty, zlib, gettext }:
|
2005-10-25 13:54:52 +00:00
|
|
|
|
2009-02-18 11:40:32 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-04-29 04:12:34 +00:00
|
|
|
name = "cracklib-2.9.4";
|
2009-02-18 11:40:32 +00:00
|
|
|
|
2005-10-25 13:54:52 +00:00
|
|
|
src = fetchurl {
|
2009-02-18 11:40:32 +00:00
|
|
|
url = "mirror://sourceforge/cracklib/${name}.tar.gz";
|
2015-04-29 04:12:34 +00:00
|
|
|
sha256 = "0n49prh5rffl33bxy8qf46cqm6mswdlqpmm6iqi490w0p6s6da7j";
|
2005-10-25 13:54:52 +00:00
|
|
|
};
|
2009-02-18 11:40:32 +00:00
|
|
|
|
2015-04-07 19:50:36 +00:00
|
|
|
buildInputs = [ libintlOrEmpty zlib gettext ];
|
2013-07-03 12:00:52 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://sourceforge.net/projects/cracklib;
|
2009-02-18 11:40:32 +00:00
|
|
|
description = "A library for checking the strength of passwords";
|
2013-07-03 12:00:52 +00:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
platforms = platforms.unix;
|
2009-02-18 11:40:32 +00:00
|
|
|
};
|
2005-10-25 13:54:52 +00:00
|
|
|
}
|