1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 03:50:45 +02:00

gnu: Add go-github-com-ergochat-readline.

* gnu/packages/golang-xyz.scm (go-github-com-ergochat-readline): New variable.

Change-Id: I0c2852c64043b35f1d917eff914eda45ed53f2ec
This commit is contained in:
Sharlatan Hellseher 2025-06-26 13:49:48 +01:00
parent 86f0e4c1fb
commit 4eee017279
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -5771,6 +5771,33 @@ cannot enforce semantic rules for values. This plugin adds support to
protoc-generated code to validate such constraints.")
(license license:asl2.0)))
(define-public go-github-com-ergochat-readline
(package
(name "go-github-com-ergochat-readline")
(version "0.1.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/ergochat/readline")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "16zyk1dzwix5l9iph61img6qn5kryq3kb03dk2lwmrwyr1xdsip3"))))
(build-system go-build-system)
(arguments
(list
#:go go-1.23
#:import-path "github.com/ergochat/readline"))
(propagated-inputs (list go-golang-org-x-text go-golang-org-x-sys))
(home-page "https://github.com/ergochat/readline")
(synopsis "Readline implementation in pure Go")
(description
"This package provides a pure Go implementation of functionality
comparable to @url{https://en.wikipedia.org/wiki/GNU_Readline, GNU Readline},
i.e. line editing and command history for simple TUI programs.")
(license license:expat)))
(define-public go-github-com-erikgeiser-coninput
(package
(name "go-github-com-erikgeiser-coninput")