summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Milosavljevic <dannym@friendly-machines.com>2025-12-05 18:58:16 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-02-05 23:54:15 +0000
commiteaaea2f9b5ba426cf9719a2f56ef61cf3a87fc6c (patch)
tree86e6b95bb52f1844a9220cbd4d215cd0e08d3326
parent9af0f180575f42e44f8f92ed94b3e980ea6f9053 (diff)
gnu: Add go-github-com-charmbracelet-x-exp-strings.
* gnu/packages/golang-xyz.scm (go-github-com-charmbracelet-x-exp-strings): New variable. Change-Id: Ic7bf61e020f66b849830baa01394efe703f49b49 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/golang-xyz.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 31ac4f95925..e2a55042329 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -4017,6 +4017,31 @@ package provides an API for comparing Golden files.")
"Package slice provides utility functions for working with slices in Go.")
(license license:expat)))
+(define-public go-github-com-charmbracelet-x-exp-strings
+ (package
+ (name "go-github-com-charmbracelet-x-exp-strings")
+ (version "0.1.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/charmbracelet/x")
+ (commit (go-version->git-ref version
+ #:subdir "exp/strings"))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1i0xlik5rn59pfsx9ci4c4r68h32cg97s9yygplr5skwhq7513cz"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/charmbracelet/x/exp/strings"
+ #:unpack-path "github.com/charmbracelet/x"))
+ (home-page "https://github.com/charmbracelet/x")
+ (synopsis "String manipulation utilities for Go")
+ (description
+ "Package strings provides utility functions for working with strings in Go.")
+ (license license:expat)))
+
(define-public go-github-com-charmbracelet-x-input
(package
(name "go-github-com-charmbracelet-x-input")