From bd7be45d598af974c0edbff2429c6660c97fdc01 Mon Sep 17 00:00:00 2001 From: Arthur Rodrigues Date: Sun, 26 Oct 2025 00:21:41 +0000 Subject: [PATCH] gnu: Add go-github-com-anchore-go-struct-converter. * gnu/packages/golang-xyz.scm (go-github-com-anchore-go-struct-converter): New variable. Change-Id: Ie273592367830c6079fe348ca89d296a2436c1d3 Signed-off-by: Sharlatan Hellseher --- gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 655524b40bfe9355983a0f2be57fac239c02f36a..bb23bb939d135b74d46ddd74d8898e3cb89ed1c9 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -1546,6 +1546,30 @@ handlers, log levels, zero-allocation, scopes, custom formatting, and environment and runtime configuration.") (license license:mpl2.0))) +(define-public go-github-com-anchore-go-struct-converter + (package + (name "go-github-com-anchore-go-struct-converter") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/anchore/go-struct-converter") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jvhq19wd061wmfsskqgh3hkm5p5a5wzpzlivzyd97vzrj2y0hn3")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/anchore/go-struct-converter")) + (home-page "https://github.com/anchore/go-struct-converter") + (synopsis "Struct converter for Golang") + (description + "This package provides a set of conversion utilities to migrate between +different versioned Go structs.") + (license license:asl2.0))) + (define-public go-github-com-andreasbriese-bbloom (package (name "go-github-com-andreasbriese-bbloom")