From 01d66eb90bc6a0c3829dafe3261d8a75c604cb2a Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Wed, 27 May 2026 15:32:22 -0300 Subject: [PATCH] gnu: Add go-github-com-alimpfard-line. * gnu/packages/golang-xyz.scm (go-github-com-alimpfard-line): New variable. Relates-to: guix/guix!8619 Change-Id: I60ea28e595c1ae80db635449abcd360ca6cd6a8c --- gnu/packages/golang-xyz.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index a6f002f997f..b9f1dbfc58a 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -1840,6 +1840,33 @@ software (based on Python's @uref{https://github.com/pycontribs/tendo, tendo}).") (license license:expat))) +(define-public go-github-com-alimpfard-line + (package + (name "go-github-com-alimpfard-line") + (version "0.0.0-20230131232016-03b4e7dee324") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alimpfard/line") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0swjy1z7hqy4xgq2hfa457rs7p9d7fw5lmdh0zaf3n25rqv10ds1")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/alimpfard/line")) + (propagated-inputs + (list go-golang-org-x-sys)) + (home-page "https://github.com/alimpfard/line") + (synopsis "Terminal line editor") + (description + "This package provides a full reimplementation of SerenityOS's LibLine in +Go language. It supports flexible autocompletion, live prompt, buffer update +and stylisation, multiline editing and more.") + (license license:bsd-2))) + (define-public go-github-com-alsm-ioprogress (package (name "go-github-com-alsm-ioprogress")