me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-afl-0.11.

* gnu/packages/crates-io.scm (rust-afl-0.11): New variable.

Change-Id: I295148bd8434ab4463bcc54c5514338ea404f5d2
master
Efraim Flashner 2024-03-18 12:01:40 +02:00
parent b0ad284151
commit 3cd9c9f296
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 25 additions and 0 deletions

View File

@ -759,6 +759,31 @@ the Rust programming language.")
"Fuzz Rust code with american-fuzzy-lop.")
(license license:asl2.0)))
(define-public rust-afl-0.11
(package
(inherit rust-afl-0.12)
(name "rust-afl")
(version "0.11.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "afl" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0a2jm690mcxd073j9isd16rpzkjfmpgamw9h64f5l2fpns0423vc"))))
(arguments
`(#:skip-build? #t ; We don't want to add AFL as an input.
#:cargo-inputs (("rust-cc" ,rust-cc-1)
("rust-clap" ,rust-clap-2)
("rust-lazy-static" ,rust-lazy-static-1)
("rust-libc" ,rust-libc-0.2)
("rust-rustc-version" ,rust-rustc-version-0.4)
("rust-xdg" ,rust-xdg-2))
#:cargo-development-inputs (("rust-tempfile" ,rust-tempfile-3))
#:phases (modify-phases %standard-phases
;; Custom archive file for test suite.
(delete 'check-for-pregenerated-files))))))
(define-public rust-ahash-0.8
(package
(name "rust-ahash")