cracklib: 2.9.6 -> 2.9.7

https://github.com/cracklib/cracklib/releases/tag/v2.9.7

I haven't looked into the details but notes mention:

> apply patch to fix CVE-2016-6318 Stack-based buffer overflow when parsing large GECOS field
> fix a buffer overflow processing long words
This commit is contained in:
Will Dietz 2019-03-03 22:37:13 -06:00
parent 2cba3d0803
commit a3eccfd5b0

View File

@ -1,11 +1,12 @@
{ stdenv, fetchurl, zlib, gettext }:
stdenv.mkDerivation rec {
name = "cracklib-2.9.6";
pname = "cracklib";
version = "2.9.7";
src = fetchurl {
url = "https://github.com/cracklib/cracklib/releases/download/${name}/${name}.tar.gz";
sha256 = "0hrkb0prf7n92w6rxgq0ilzkk6rkhpys2cfqkrbzswp27na7dkqp";
url = "https://github.com/${pname}/${pname}/releases/download/v${version}/${pname}-${version}.tar.bz2";
sha256 = "1rimpjsdnmw8f5b7k558cic41p2qy2n2yrlqp5vh7mp4162hk0py";
};
buildInputs = [ zlib gettext ];