2015-04-07 20:50:36 +01:00
|
|
|
{ stdenv, fetchurl, libintlOrEmpty, zlib, gettext }:
|
2005-10-25 14:54:52 +01:00
|
|
|
|
2009-02-18 11:40:32 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-11-11 12:41:15 +00:00
|
|
|
name = "cracklib-2.9.6";
|
2009-02-18 11:40:32 +00:00
|
|
|
|
2005-10-25 14:54:52 +01:00
|
|
|
src = fetchurl {
|
2015-11-11 12:41:15 +00:00
|
|
|
url = "https://github.com/cracklib/cracklib/releases/download/${name}/${name}.tar.gz";
|
|
|
|
sha256 = "0hrkb0prf7n92w6rxgq0ilzkk6rkhpys2cfqkrbzswp27na7dkqp";
|
2005-10-25 14:54:52 +01:00
|
|
|
};
|
2009-02-18 11:40:32 +00:00
|
|
|
|
2015-04-07 20:50:36 +01:00
|
|
|
buildInputs = [ libintlOrEmpty zlib gettext ];
|
2013-07-03 13:00:52 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-11-11 12:41:15 +00:00
|
|
|
homepage = https://github.com/cracklib/cracklib;
|
2009-02-18 11:40:32 +00:00
|
|
|
description = "A library for checking the strength of passwords";
|
2013-07-03 13:00:52 +01:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
platforms = platforms.unix;
|
2009-02-18 11:40:32 +00:00
|
|
|
};
|
2005-10-25 14:54:52 +01:00
|
|
|
}
|