guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit a4642d9d29601170fc2c6d3bda685e9cb147010e
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Jun 12 22:57:32 2026 +0100
gnu: Add go-github-com-clipperhouse-stringish.
* gnu/packages/golang-xyz.scm (go-github-com-clipperhouse-stringish): New
variable.
Change-Id: Ia0dbea0ddca6a892db2aad5bb8937d0da82c107c
---
gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 5cbcd1a2b1..b84ae73d6e 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -6113,6 +6113,31 @@ source files. A neutral variety of English is used by
default, but a US or UK
locale can be selected.")
(license license:expat)))
+(define-public go-github-com-clipperhouse-stringish
+ (package
+ (name "go-github-com-clipperhouse-stringish")
+ (version "0.1.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/clipperhouse/stringish")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1kw49n1dg8wdp7g71xbzjzrkip83vy09wk9zilshbfkpdz7grgk1"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/clipperhouse/stringish"))
+ (home-page "https://github.com/clipperhouse/stringish")
+ (synopsis "Handle strings and bytes interchangeably in Go")
+ (description
+ "This package provides a small Go module that provides a generic type
+constraint for “string-like” data, and a utf8 package that works with both
+strings and byte slices without conversions.")
+ (license license:expat)))
+
(define-public go-github-com-cloudwego-iasm
(package
(name "go-github-com-cloudwego-iasm")