1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/cracklib/default.nix

20 lines
559 B
Nix
Raw Normal View History

2015-04-07 20:50:36 +01:00
{ stdenv, fetchurl, libintlOrEmpty, zlib, gettext }:
stdenv.mkDerivation rec {
2015-04-29 05:12:34 +01:00
name = "cracklib-2.9.4";
src = fetchurl {
url = "mirror://sourceforge/cracklib/${name}.tar.gz";
2015-04-29 05:12:34 +01:00
sha256 = "0n49prh5rffl33bxy8qf46cqm6mswdlqpmm6iqi490w0p6s6da7j";
};
2015-04-07 20:50:36 +01:00
buildInputs = [ libintlOrEmpty zlib gettext ];
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;
};
}