From 0c7b7864fb0e054f7e571beb41a6f00c734f3a42 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 21 Oct 2025 15:40:28 +0100 Subject: [PATCH] gnu: Add go-github-com-adamkorcz-go-118-fuzz-build. * gnu/packages/golang-check.scm (go-github-com-adamkorcz-go-118-fuzz-build): New variable. Change-Id: I39ccda17f1ba813d62f25933d3b4901dcfd27ad2 Reviewed-by: Arthur Rodrigues --- gnu/packages/golang-check.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index 78920ba5b8734169aba896de20be87525933fc9d..966851d957a6b72c496d89399aa537ee0f0a0de7 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -124,6 +124,33 @@ fuzzing engine that provides an array or slice of bytes can be used with go-fuzz-headers.") (license license:asl2.0))) +(define-public go-github-com-adamkorcz-go-118-fuzz-build + (package + (name "go-github-com-adamkorcz-go-118-fuzz-build") + (version "0.0.0-20250520111509-a70c2aa677fa") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/AdamKorcz/go-118-fuzz-build") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1523sncv9q82abhhmixj27l1frxw1srkkzv7nfsfmkhp9wgdn9b3")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/AdamKorcz/go-118-fuzz-build")) + (propagated-inputs + (list go-github-com-adalogics-go-fuzz-headers + go-golang-org-x-tools)) + (home-page "https://github.com/AdamKorcz/go-118-fuzz-build") + (synopsis "Fuzzy testing for Golang") + (description + "This package implements a tool to compile native Golang fuzzers to +@code{libFuzzer} fuzzers.") + (license license:asl2.0))) + (define-public go-github-com-alecthomas-assert-v2 (package (name "go-github-com-alecthomas-assert-v2")