From 63d9790df6e7711df264752720d5600edefbb8da Mon Sep 17 00:00:00 2001 From: Arthur Rodrigues Date: Sun, 17 Aug 2025 15:44:27 -0300 Subject: [PATCH] gnu: Add go-github-com-lestrrat-go-blackmagic. * gnu/packages/golang-xyz.scm (go-github-com-lestrrat-go-blackmagic): New variable. Change-Id: I0fff901b8776bf76434d771117711d3283555c85 Modified-by: Sharlatan Hellseher Signed-off-by: Sharlatan Hellseher --- gnu/packages/golang-xyz.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 85a58f1565047405c2b260428d9b81ef11a1a0d2..ba73ca06de50918bb50d45ca383ad3bcdd80bac0 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -12400,6 +12400,32 @@ the first isn't available. @end itemize") (license license:expat))) +(define-public go-github-com-lestrrat-go-blackmagic + (package + (name "go-github-com-lestrrat-go-blackmagic") + (version "1.0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/lestrrat-go/blackmagic") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vyij1wnsh85vqi70sq0kgwrnx4zrn4yx8nk5lqd630g1akqwr8y")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/lestrrat-go/blackmagic")) + (native-inputs (list go-github-com-stretchr-testify)) + (home-page "https://github.com/lestrrat-go/blackmagic") + (synopsis "Reflect-based black magic for Golang") + (description + ;; XXX: REAMDE lacks of any description at all, code not documented + ;; either. + "This package implements a reflect-based black magic for Go.") + (license license:expat))) + (define-public go-github-com-lestrrat-go-envload (package (name "go-github-com-lestrrat-go-envload")