diff options
| author | Nguyễn Gia Phong <cnx@loang.net> | 2024-12-05 10:38:56 +0900 |
|---|---|---|
| committer | Nguyễn Gia Phong <cnx@loang.net> | 2024-12-05 14:06:12 +0900 |
| commit | 618c6b249dd31f3bc73ddc6d3ffef90aa99b6b34 (patch) | |
| tree | 7dfb2364d54c194c09900cb10d1ac2d31f087c65 | |
| parent | 24c16d94d4002ae189a0e8ba1078b5d201419393 (diff) | |
| download | loftix-618c6b249dd31f3bc73ddc6d3ffef90aa99b6b34.tar.gz | |
Update to AFL++4.30c
References: https://issues.guix.gnu.org/74690
| -rw-r--r-- | loftix/fuzzing.scm | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/loftix/fuzzing.scm b/loftix/fuzzing.scm index e5f6178..44cb062 100644 --- a/loftix/fuzzing.scm +++ b/loftix/fuzzing.scm @@ -30,22 +30,20 @@ #:use-module (guix packages)) (define-public afl++ - (let ((commit "42fc9acf5bdd512608e3590a78749c2cd95ee5f3") - (revision "0")) - (package - (inherit aflplusplus) - (name "afl++") - (version (git-version "4.22a" revision commit)) - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/AFLplusplus/AFLplusplus") - (commit commit))) - (sha256 - (base32 - "149f5r341v921lfmdr4s9yap4qrqzc41vc7rx5xlgb78m5lwprx8")) - (patches (search-patches - "patches/afl++-keep-all-crashes.patch"))))))) + (package + (inherit aflplusplus) + (name "afl++") + (version "4.30c") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/AFLplusplus/AFLplusplus") + (commit (string-append "v" version)))) + (sha256 + (base32 + "1lmpyf1gwz78pqxw9iqxhxzanbrid33ihq9xzmnk8c4yv449sdks")) + (patches (search-patches + "patches/afl++-keep-all-crashes.patch")))))) (define-public afl-dyninst (package |
