guix_mirror_bot pushed a commit to branch go-team in repository guix. commit ace22c29bfebf0fd1756e4edae1ef221e250c852 Author: Sharlatan Hellseher <sharlata...@gmail.com> 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 76616b0f81..761cfd73d2 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -2969,6 +2969,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: ;;;