summary refs log tree commit diff
path: root/pkgs/development/libraries/cracklib/default.nix
blob: e0c8d443ec805177cfc8b2e922642f4e436095d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, libintlOrEmpty }:

stdenv.mkDerivation rec {
  name = "cracklib-2.9.1";

  src = fetchurl {
    url = "mirror://sourceforge/cracklib/${name}.tar.gz";
    sha256 = "0mni2sz7350d4acs7gdl8nilfmnb8qhcvmxnpf6dr5wsag10b2a0";
  };

  buildInputs = libintlOrEmpty;

  meta = with stdenv.lib; {
    homepage    = http://sourceforge.net/projects/cracklib;
    description = "A library for checking the strength of passwords";
    maintainers = with maintainers; [ lovek323 ];
    platforms   = platforms.unix;
  };
}