Merge pull request #174149 from chivay/honggfuzz-fix

honggfuzz: Use LLVM 12
This commit is contained in:
Sandro 2022-05-28 00:42:44 +02:00 committed by GitHub
commit 1c3d61e8aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View file

@ -45,7 +45,7 @@ let
homepage = "https://honggfuzz.dev/";
license = lib.licenses.asl20;
platforms = [ "x86_64-linux" ];
maintainers = with lib.maintainers; [ cpu ];
maintainers = with lib.maintainers; [ cpu chivay ];
};
};
in honggfuzz

View file

@ -1033,7 +1033,10 @@ with pkgs;
stdenv = clangStdenv;
};
honggfuzz = callPackage ../tools/security/honggfuzz { };
honggfuzz = callPackage ../tools/security/honggfuzz {
clang = clang_12;
llvm = llvm_12;
};
aflplusplus = callPackage ../tools/security/aflplusplus {
clang = clang_9;