summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-06-20 23:13:22 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-06-20 23:58:44 +0100
commitbada938227ae27aef7f3ff5ac9dc3cc8be4f619d (patch)
tree0b2aef2a684b1589027d039983b5dda650995da1
parent9caebc7f6e09fa431d5945774626d1b62e6c87b2 (diff)
gnu: go-github-com-alecaivazis-survey-v2: Improve package.
* gnu/packages/golang-xyz.scm (go-github-com-alecaivazis-survey-v2) [name]: Adjust it accordingly to go.mod module name. [arguments] <import-path>: Likewise. [propagated-inputs]: Remove go-github-com-stretchr-testify, go-github-com-hinshun-vt10x, go-github-com-creack-pty, and go-github-com-netflix-go-expect. [native-inputs]: Add go-github-com-creack-pty, go-github-com-hinshun-vt10x, go-github-com-netflix-go-expect, and go-github-com-stretchr-testify. [description]: Fix fill column indentation. Change-Id: I468dda72ffce224e416b6e5b34eef71805db9ccf
-rw-r--r--gnu/packages/golang-xyz.scm29
1 files changed, 15 insertions, 14 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 90b3ed6a68..d659df4412 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -855,7 +855,7 @@ http://tartarus.org/~martin/PorterStemmer/index.html.")
(define-public go-github-com-alecaivazis-survey-v2
(package
- (name "go-github-com-alecaivazis-survey")
+ (name "go-github-com-alecaivazis-survey-v2")
(version "2.3.7")
(source
(origin
@@ -869,22 +869,23 @@ http://tartarus.org/~martin/PorterStemmer/index.html.")
(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))
+ #:import-path "github.com/AlecAivazis/survey/v2"))
+ (native-inputs
+ (list go-github-com-creack-pty
+ go-github-com-hinshun-vt10x
+ go-github-com-netflix-go-expect
+ go-github-com-stretchr-testify))
+ (propagated-inputs
+ (list go-github-com-kballard-go-shellquote
+ go-github-com-mattn-go-isatty
+ go-github-com-mgutz-ansi
+ go-golang-org-x-term
+ go-golang-org-x-text))
(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.")
+ "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