gnu: Add go-sigs-k8s-io-randfill.

* gnu/packages/golang-check.scm (go-sigs-k8s-io-randfill): New variable.

Change-Id: Ib21f097667686ccff5d97431ab8d449c7c674cb9
This commit is contained in:
Sharlatan Hellseher 2025-06-10 14:14:26 +01:00
parent 938c7d307f
commit 03af506e47
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -3019,6 +3019,30 @@ thoroughly
@end itemize")
(license license:mpl2.0)))
(define-public go-sigs-k8s-io-randfill
(package
(name "go-sigs-k8s-io-randfill")
(version "1.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/kubernetes-sigs/randfill")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1nk0vk269jw0k155yna43jx9lz4dbzhlhp98jrk8iwqn7k250my6"))))
(build-system go-build-system)
(arguments
(list
#:go go-1.23
#:import-path "sigs.k8s.io/randfill"))
(home-page "https://sigs.k8s.io/randfill")
(synopsis "Fuzz testing for Golang")
(description
"Package randfill is a library for populating go objects with random values.")
(license license:asl2.0)))
;;;
;;; Executables:
;;;