summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Norton <patrick.147.norton@gmail.com>2026-01-06 08:50:17 -0500
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-04-30 21:33:59 +0100
commit59fdaeb276b2d020019c7d6342b7cb7046f58ece (patch)
treefc03cd78e55c1c6a6f04a8b73fba0c5000cd6ca6
parent2038ab6b0b3630f36adbe59a763f83c898c7a9c0 (diff)
gnu: Add go-github-com-huin-goutil.
* gnu/packages/golang-xyz.scm (go-github-com-huin-goutil): New variable. Relates-to: https://codeberg.org/guix/guix/pulls/5417 Change-Id: I0d5dcae1dc3aaf019ccb5db28b5283f0e9dc14d1 Reviewed-by: Arthur Rodrigues <arthurhdrodrigues@proton.me> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/golang-xyz.scm26
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 42c38c3a4b..95e2bb1d74 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -13449,6 +13449,32 @@ subsystem in Linux.")
used in other languages but absent in Go package strings.")
(license license:expat)))
+(define-public go-github-com-huin-goutil
+ (package
+ (name "go-github-com-huin-goutil")
+ (version "0.0.0-20170803182201-1ca381bf3150")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/huin/goutil")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0alhyacsfqic2wxyqn4gvk9wzjl4pkmy8rhvqjk84xsghgx5xf12"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:skip-build? #t
+ #:import-path "github.com/huin/goutil"))
+ (home-page "https://github.com/huin/goutil")
+ (synopsis "Collection of Go utility code")
+ (description
+ "This package is a collection of miscellaneous Go utility code that is
+potentially useful across multiple projects, and has therefore been factored
+out.")
+ (license license:bsd-2)))
+
(define-public go-github-com-iancoleman-orderedmap
(package
(name "go-github-com-iancoleman-orderedmap")