From 1adf73658f05261d766c951cc966c0897ec03347 Mon Sep 17 00:00:00 2001 From: Patrick Norton Date: Sun, 4 Jan 2026 15:12:44 -0500 Subject: [PATCH] gnu: Add go-github-com-josharian-txtarfs. * gnu/packages/golang-check.scm (go-github-com-josharian-txtarfs): New variable. Relates-to: guix/guix!5417 Change-Id: Ide2b2584b219448f75538fdc3f3a5e7caad55f69 Reviewed-by: Johannes Christ Modified-by: Sharlatan Hellseher Signed-off-by: Sharlatan Hellseher --- gnu/packages/golang-check.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index 7ef0f3bc396..0e552f21ce2 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -2175,6 +2175,33 @@ testing of time-sensitive code.") library's testing/fstest package.") (license license:bsd-3))) +(define-public go-github-com-josharian-txtarfs + (package + (name "go-github-com-josharian-txtarfs") + (version "0.0.0-20240408113805-5dc76b8fe6bf") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/josharian/txtarfs") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "129rf6hviw46rxcnnkc8jb1k579798rrhnh1k3nn7npi260ia44m")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/josharian/txtarfs")) + (propagated-inputs + (list go-github-com-josharian-mapfs + go-golang-org-x-tools)) + (home-page "https://github.com/josharian/txtarfs") + (synopsis "Convert a txtar to an io.FS") + (description + "This package turns a @url{https://pkg.go.dev/golang.org/x/tools/txtar, + txtar} into an @url{https://pkg.go.dev/io/fs, fs.FS}.") + (license license:expat))) + (define-public go-github-com-joshdk-go-junit (package (name "go-github-com-joshdk-go-junit")