From 3422714004a9ad5f71febbec4d9a5eea093cde81 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 28 Sep 2025 01:55:27 +0100 Subject: [PATCH] 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 dd1a154a01e00b53402957c17acfa35f56fb5945..3397b470494f1b6ce238637b903a671bb87b409a 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")