guix_mirror_bot pushed a commit to branch master
in repository guix.

commit af7daf1e1cda1ad0c9ab36dde1e588a643cb4316
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Sep 11 13:29:08 2025 +0100

    gnu: Add go-github-com-charmbracelet-colorprofile.
    
    * gnu/packages/golang-xyz.scm (go-github-com-charmbracelet-colorprofile): 
New variable.
    
    Change-Id: Ic342ff55465727362059a0b25811596d815d396d
---
 gnu/packages/golang-xyz.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 1bf9c968c6..70dd42f846 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -3234,6 +3234,37 @@ well-suited for simple and complex terminal 
applications, either inline,
 full-window, or a mix of both.")
     (license license:asl2.0)))
 
+(define-public go-github-com-charmbracelet-colorprofile
+  (package
+    (name "go-github-com-charmbracelet-colorprofile")
+    (version "0.3.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/charmbracelet/colorprofile";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0r2qhiq110hjk55y4l4bkcrmkksbr8ah4s8qp9rd96vjy6bmbr2a"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/charmbracelet/colorprofile"))
+    (propagated-inputs
+     (list go-github-com-charmbracelet-x-ansi
+           go-github-com-charmbracelet-x-term
+           go-github-com-lucasb-eyer-go-colorful
+           go-github-com-xo-terminfo
+           go-golang-org-x-sys))
+    (home-page "https://github.com/charmbracelet/colorprofile";)
+    (synopsis "Magical terminal color handling")
+    (description
+     "Package colorprofile provides a way to downsample ANSI escape sequence
+colors and styles automatically based on output, environment variables, and
+Terminfo databases.")
+    (license license:expat)))
+
 (define-public go-github-com-charmbracelet-glamour
   (package
     (name "go-github-com-charmbracelet-glamour")

Reply via email to