mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add go-github-com-dvyukov-go-fuzz.
* gnu/packages/golang-check.scm (go-github-com-dvyukov-go-fuzz): New variable. Change-Id: I60674438726a618b48b2aada16b80e81ef487a5d
This commit is contained in:
parent
c7942bea49
commit
2b7ca2ad22
1 changed files with 34 additions and 0 deletions
|
@ -466,6 +466,40 @@ style).
|
||||||
test minimization algorithm.")
|
test minimization algorithm.")
|
||||||
(license license:bsd-2)))
|
(license license:bsd-2)))
|
||||||
|
|
||||||
|
(define-public go-github-com-dvyukov-go-fuzz
|
||||||
|
(package
|
||||||
|
(name "go-github-com-dvyukov-go-fuzz")
|
||||||
|
(version "0.0.0-20240924070022-e577bee5275c")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/dvyukov/go-fuzz")
|
||||||
|
(commit (go-version->git-ref version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "07ckgxxphv0157g6gyganrinynvw43c3mvizagjbjm3q2blymfh3"))
|
||||||
|
(snippet
|
||||||
|
#~(begin (use-modules (guix build utils))
|
||||||
|
(for-each delete-file-recursively
|
||||||
|
(list "go-fuzz/vendor" "test/vendor"))))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:skip-build? #t
|
||||||
|
#:tests? #f
|
||||||
|
#:import-path "github.com/dvyukov/go-fuzz"))
|
||||||
|
(home-page "https://github.com/dvyukov/go-fuzz")
|
||||||
|
(synopsis "Randomized testing for Golang")
|
||||||
|
(description
|
||||||
|
"Go-fuzz is a coverage-guided
|
||||||
|
@url{http://en.wikipedia.org/wiki/Fuzz_testing, fuzzing solution} for testing
|
||||||
|
of Go packages. Fuzzing is mainly applicable to packages that parse complex
|
||||||
|
inputs (both text and binary), and is especially useful for hardening of
|
||||||
|
systems that parse inputs from potentially malicious users (e.g. anything
|
||||||
|
accepted over a network).")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public go-github-com-elgris-jsondiff
|
(define-public go-github-com-elgris-jsondiff
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-elgris-jsondiff")
|
(name "go-github-com-elgris-jsondiff")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue