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 {
|
2013-12-18 14:03:11 +01:00
|
|
|
name = "cracklib-2.9.1";
|
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";
|
2013-12-18 14:03:11 +01:00
|
|
|
sha256 = "0mni2sz7350d4acs7gdl8nilfmnb8qhcvmxnpf6dr5wsag10b2a0";
|
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
|
|
|
}
|