summaryrefslogtreecommitdiff
path: root/gnu/packages/golang-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-02-25 23:04:23 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-05-26 16:50:22 +0100
commitf9e384867bc86736a65acb88a01ee3e0f0f61de7 (patch)
tree811e2635ab267ae1e3f5c315e6b67913265997ff /gnu/packages/golang-xyz.scm
parent33b2cf13e6f48b9dc924aea2eed5cfacda6b9dfe (diff)
gnu: Add go-github-com-junegunn-go-shellwords.
* gnu/packages/golang-xyz.scm (go-github-com-junegunn-go-shellwords): New variable. Change-Id: I5368249f9dc8c337f98f5bbbc6f0b089eb15388a
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r--gnu/packages/golang-xyz.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index a4a97cbf47..4c71d04f73 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -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")