guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 2a01f0d351da45655fdf5d05d133d891994b95a0
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Jun 10 14:14:26 2025 +0100
gnu: Add go-sigs-k8s-io-randfill.
* gnu/packages/golang-check.scm (go-sigs-k8s-io-randfill): New variable.
Change-Id: Ib21f097667686ccff5d97431ab8d449c7c674cb9
---
gnu/packages/golang-check.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm
index 34d151c8d4..27397eaa68 100644
--- a/gnu/packages/golang-check.scm
+++ b/gnu/packages/golang-check.scm
@@ -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:
;;;