nixpkgs/pkgs/development/libraries/cracklib/default.nix

20 lines
557 B
Nix
Raw Normal View History

2018-03-14 19:15:06 +00:00
{ stdenv, fetchurl, zlib, gettext }:
stdenv.mkDerivation rec {
2015-11-11 12:41:15 +00:00
name = "cracklib-2.9.6";
src = fetchurl {
2015-11-11 12:41:15 +00:00
url = "https://github.com/cracklib/cracklib/releases/download/${name}/${name}.tar.gz";
sha256 = "0hrkb0prf7n92w6rxgq0ilzkk6rkhpys2cfqkrbzswp27na7dkqp";
};
2018-03-14 19:15:06 +00:00
buildInputs = [ zlib gettext ];
meta = with stdenv.lib; {
2015-11-11 12:41:15 +00:00
homepage = https://github.com/cracklib/cracklib;
description = "A library for checking the strength of passwords";
maintainers = with maintainers; [ lovek323 ];
platforms = platforms.unix;
};
}