1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

gnu: Add go-github-com-junegunn-go-shellwords.

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

Change-Id: I5368249f9dc8c337f98f5bbbc6f0b089eb15388a
This commit is contained in:
Sharlatan Hellseher 2025-02-25 23:04:23 +00:00
parent 33b2cf13e6
commit f9e384867b
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -11177,6 +11177,28 @@ string.")
the @code{cpan} module @code{Parse::CommandLine}.")
(license license:expat)))
;; For fzf@0.60.2
(define-public go-github-com-junegunn-go-shellwords
(let ((commit "2aa3b3277741a6ad31883f223d770221a85e9dd0")
(revision "0"))
(hidden-package (package (inherit go-github-com-mattn-go-shellwords)
(name "go-github-com-junegunn-go-shellwords")
(version (git-version "0.0.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/junegunn/go-shellwords")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "1x51lwmkf9bbn28f5682idkph70lk6xzh0w46diq6c7a9rw27b5b"))))
(build-system go-build-system)
(arguments
(substitute-keyword-arguments
(package-arguments go-github-com-mattn-go-shellwords)
((#:import-path _) "github.com/junegunn/go-shellwords")))))))
(define-public go-github-com-mattn-go-sixel
(package
(name "go-github-com-mattn-go-sixel")