2013-07-03 14:00:52 +02:00
|
|
|
{ stdenv, fetchurl, libintlOrEmpty }:
|
2005-10-25 15:54:52 +02:00
|
|
|
|
2009-02-18 12:40:32 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2010-06-02 19:31:20 +02:00
|
|
|
name = "cracklib-2.8.16";
|
2009-02-18 12:40:32 +01:00
|
|
|
|
2005-10-25 15:54:52 +02:00
|
|
|
src = fetchurl {
|
2009-02-18 12:40:32 +01:00
|
|
|
url = "mirror://sourceforge/cracklib/${name}.tar.gz";
|
2010-06-02 19:31:20 +02:00
|
|
|
sha256 = "1g3mchdvra9nihxlkl3rdz96as3xnfw5m59hmr5k17l7qa9a8fpw";
|
2005-10-25 15:54:52 +02:00
|
|
|
};
|
2009-02-18 12:40:32 +01:00
|
|
|
|
2013-07-03 14:00:52 +02:00
|
|
|
buildInputs = libintlOrEmpty;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://sourceforge.net/projects/cracklib;
|
2009-02-18 12:40:32 +01:00
|
|
|
description = "A library for checking the strength of passwords";
|
2013-07-03 14:00:52 +02:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
platforms = platforms.unix;
|
2009-02-18 12:40:32 +01:00
|
|
|
};
|
2005-10-25 15:54:52 +02:00
|
|
|
}
|