diff options
author | David Thompson <davet@gnu.org> | 2025-06-02 12:20:28 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-06-17 15:17:17 +0200 |
commit | 3b7695653dc62a67772cb1fc83c1261682d0df1a (patch) | |
tree | 2c1023ce4a608ea65eb2c6ee593b1ef52c30db6b /gnu/packages/golang-xyz.scm | |
parent | 8fbd4cdba29739b57e6e4b4ed57ff124ac13b295 (diff) |
gnu: Add go-github-com-hinshun-vt10x.
* gnu/packages/golang-xyz.scm (go-github-com-hinshun-vt10x): New variable.
Co-authored-by: Ludovic Courtès <ludo@gnu.org>
Change-Id: I30edcf4a64b5db1c179ebc3b825c2f0a8e1664e1
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 2f1c28fbec..4336215070 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -8217,6 +8217,32 @@ anniversaries.") @end itemize") (license license:bsd-3))) +(define-public go-github-com-hinshun-vt10x + (package + (name "go-github-com-hinshun-vt10x") + (version "0.0.0-20220301184237-5011da428d02") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hinshun/vt10x") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0pzdwwbzxrsqjb8xfzmfpkyb1gbcszrrimr70cz75jjk2535r26b")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/hinshun/vt10x")) + (home-page "https://github.com/hinshun/vt10x") + (synopsis "vt10x terminal emulation backend") + (description + "Package terminal is a vt10x terminal emulation backend, influenced +largely by st, rxvt, xterm, and iTerm as reference. Use it for terminal +muxing, a terminal emulation frontend, or wherever else you need terminal +emulation.") + (license license:expat))) + (define-public go-github-com-hodgesds-perf-utils (package (name "go-github-com-hodgesds-perf-utils") |