lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

zlog: apply patch for CVE-2024-22857

+9 -1
+9 -1
pkgs/development/libraries/zlog/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub }: 1 + { lib, stdenv, fetchFromGitHub, fetchpatch }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 version = "1.2.17"; ··· 10 10 rev = version; 11 11 sha256 = "sha256-ckpDMRLxObpl8N539DC5u2bPpmD7jM+KugurUfta6tg="; 12 12 }; 13 + 14 + patches = [ 15 + (fetchpatch { 16 + name = "CVE-2024-22857.patch"; 17 + url = "https://github.com/HardySimpson/zlog/commit/c47f781a9f1e9604f5201e27d046d925d0d48ac4.patch"; 18 + hash = "sha256-3FAAHJ2R/OpNpErWXptjEh0x370/jzvK2VhuUuyaOjE="; 19 + }) 20 + ]; 13 21 14 22 makeFlags = [ "PREFIX=${placeholder "out"}" ]; 15 23