diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-08 08:26:24 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-22 20:13:04 +0100 |
commit | d8a83ff6eb52aa19c292ec4aa820200c41db597e (patch) | |
tree | f9d5dd0c4ebad14a0e663558ecfa65d14f2db09b | |
parent | 4ececfd71289a32683f86f051ea54b3267ec51e3 (diff) |
gnu: Add go-github-com-aybabtme-rgbterm.
* gnu/packages/golang-xyz.scm (go-github-com-aybabtme-rgbterm): New variable.
Change-Id: Ia560fd21bedd9797af774d3ee93639c30f580b80
-rw-r--r-- | gnu/packages/golang-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 824d0c7811..400b5c8f40 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -2026,6 +2026,30 @@ multiset. This implementation offers enhanced performance, flexibility, and simplicity while maintaining accuracy.") (license license:expat))) +(define-public go-github-com-aybabtme-rgbterm + (package + (name "go-github-com-aybabtme-rgbterm") + (version "0.0.0-20170906152045-cc83f3b3ce59") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aybabtme/rgbterm") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wvmxvjn64968ikvnxrflb1x8rlcwzpfl53fzbxff2axbx9lq50q")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/aybabtme/rgbterm")) + (home-page "https://github.com/aybabtme/rgbterm") + (synopsis "RGB colors support in terminal") + (description + "Package rgbterm colorizes bytes and strings using RGB colors, for a full +range of pretty terminal strings.") + (license license:expat))) + (define-public go-github-com-aymanbagabas-go-osc52-v2 (package (name "go-github-com-aymanbagabas-go-osc52-v2") |