From 46382b03286da6ee989afb9c10e7712a45c8ccbf Mon Sep 17 00:00:00 2001 From: Ashvith Shetty Date: Sat, 15 Feb 2025 00:35:33 +0530 Subject: [PATCH] gnu: Add go-github-com-zyedidia-terminal. * gnu/packages/golang-xyz.scm (go-github-com-zyedidia-terminal): New variable. Change-Id: I94caacaf4440cbfa547344aa84c084949b873c3f Signed-off-by: Sharlatan Hellseher --- gnu/packages/golang-xyz.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index c1759b7ded..9d43de5ede 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -16160,6 +16160,35 @@ It's an active fork of @url{https://github.com/npat-efault/poller}.") (description "It's an alternative fork of @url{https://github.com/gdamore/tcell}.")))) +(define-public go-github-com-zyedidia-terminal + (package + (name "go-github-com-zyedidia-terminal") + (version "0.0.0-20230315200948-4b3bcf6dddef") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/zyedidia/terminal") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lqplkpllv63msf7sp8igrhvkrnr8l8hz4v5daliyn4qwvgs3k63")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/zyedidia/terminal")) + (propagated-inputs (list go-github-com-creack-pty)) + (home-page "https://github.com/zyedidia/terminal") + (synopsis "Package terminal is a vt10x terminal emulation backend") + (description + "Package terminal is a vt10x terminal emulation backend, influenced +largely by @code{st}, @code{rxvt}, @code{xterm}, and @code{iTerm} as +reference. Use it for terminal muxing, a terminal emulation frontend, or +wherever else you need terminal emulation. + +It's an active fork of @url{https://github.com/james4k/terminal}.") + (license license:expat))) + (define-public go-go-abhg-dev-komplete (package (name "go-go-abhg-dev-komplete")