aflplusplus: 4.05c -> 4.06c

Changelog: https://github.com/AFLplusplus/AFLplusplus/releases/tag/4.06c
Also update to llvm 15, and update the qemu that's used for aflplusplus.
This commit is contained in:
Rick van Schijndel 2023-06-06 22:56:19 +02:00
parent 3b0522299a
commit 24f8a54893
3 changed files with 7 additions and 7 deletions

View File

@ -19,13 +19,13 @@ let
libtokencap = callPackage ./libtokencap.nix { inherit aflplusplus; };
aflplusplus = stdenvNoCC.mkDerivation rec {
pname = "aflplusplus";
version = "4.05c";
version = "4.06c";
src = fetchFromGitHub {
owner = "AFLplusplus";
repo = "AFLplusplus";
rev = version;
sha256 = "sha256-c4GFOuCwIOFkwIxXtwE3VTVlWW7lS8h+GMN70fZbgDI=";
sha256 = "sha256-Gb1nYDBnwLS+m8e1UD0WLIrnp8KRgliGQVvQD22JXrQ=";
};
enableParallelBuilding = true;

View File

@ -30,8 +30,8 @@ stdenv.mkDerivation {
src = fetchFromGitHub {
owner = "AFLplusplus";
repo = "qemuafl";
rev = "a8af9cbde71e333ce72a46f15e655d0b82ed0939";
sha256 = "sha256-veT9Vne9arB1kbQDAKGZ/skse5C5KNAiMBj2JWkS4tQ=";
rev = "0569eff8a12dec73642b96757f6b5b51a618a03a";
sha256 = "sha256-nYWHyRfOH2p9znRxjxsiyw11uZuMBiuJfEc7FHM5X7M=";
fetchSubmodules = true;
};

View File

@ -1394,9 +1394,9 @@ with pkgs;
};
aflplusplus = callPackage ../tools/security/aflplusplus {
clang = clang_14;
llvm = llvm_14;
llvmPackages = llvmPackages_14;
clang = clang_15;
llvm = llvm_15;
llvmPackages = llvmPackages_15;
wine = null;
};