guix_mirror_bot pushed a commit to branch master
in repository guix.

commit a57a72d415e36df96d8aaff1dae9c9c7cafb2567
Author: David Thompson <da...@gnu.org>
AuthorDate: Mon Jun 2 12:21:20 2025 +0200

    gnu: Add go-github-com-alecaivazis-survey-v2.
    
    * gnu/packages/golang-xyz.scm (go-github-com-alecaivazis-survey-v2): New 
variable.
    
    Co-authored-by: Ludovic Courtès <l...@gnu.org>
    Change-Id: I73fe4df3d2cabc6800c9da0f36d3350329d40178
---
 gnu/packages/golang-xyz.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 4336215070..19854f3670 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -853,6 +853,40 @@ Distance}.")
 http://tartarus.org/~martin/PorterStemmer/index.html.";)
     (license license:expat)))
 
+(define-public go-github-com-alecaivazis-survey-v2
+  (package
+    (name "go-github-com-alecaivazis-survey")
+    (version "2.3.7")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/AlecAivazis/survey";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0l3wqphqvm0qxv33pj9f1r72z5fln99vg735fcigv8k513m2aw9l"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/AlecAivazis/survey"
+      #:unpack-path "github.com/AlecAivazis/survey"))
+    (propagated-inputs (list go-golang-org-x-text
+                             go-golang-org-x-term
+                             go-github-com-stretchr-testify
+                             go-github-com-mgutz-ansi
+                             go-github-com-mattn-go-isatty
+                             go-github-com-kballard-go-shellquote
+                             go-github-com-hinshun-vt10x
+                             go-github-com-creack-pty
+                             go-github-com-netflix-go-expect))
+    (home-page "https://github.com/AlecAivazis/survey";)
+    (synopsis "Interactive and accessible terminal prompts for Go")
+    (description
+     "This package provides a library for building interactive and accessible 
prompts
+on terminals supporting ANSI escape sequences.")
+    (license license:expat)))
+
 (define-public go-github-com-alecthomas-chroma
   (package
     (name "go-github-com-alecthomas-chroma")

Reply via email to