guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 3422714004a9ad5f71febbec4d9a5eea093cde81
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Sep 28 01:55:27 2025 +0100
gnu: Add go-github-com-morikuni-aec.
* gnu/packages/golang-xyz.scm (go-github-com-morikuni-aec): New variable.
Change-Id: Ie1165d03c767eed5aa616cf0daa1d242a583d594
---
gnu/packages/golang-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index dd1a154a01..3397b47049 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -15100,6 +15100,28 @@ values pointed to. Unexported field values are not
copied.")
"This package provides a fast gitignore matching library for Go.")
(license license:expat)))
+(define-public go-github-com-morikuni-aec
+ (package
+ (name "go-github-com-morikuni-aec")
+ (version "1.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/morikuni/aec")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1qaqh0lk9wrqgff0yrxnbznvmwyhdxy3g9b2hjpazp5bw4nj0dp7"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/morikuni/aec"))
+ (home-page "https://github.com/morikuni/aec")
+ (synopsis "Go wrapper for ANSI escape code")
+ (description "This package provides a wrapper for ANSI escape code.")
+ (license license:expat)))
+
(define-public go-github-com-motemen-go-colorine
(package
(name "go-github-com-motemen-go-colorine")