sharlatan pushed a commit to branch go-team
in repository guix.

commit 92ec96631ff5d43ac3c5b4d03e543fee62227b05
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Tue Feb 25 23:04:23 2025 +0000

    gnu: Add go-github-com-junegunn-go-shellwords.
    
    * gnu/packages/golang-xyz.scm (go-github-com-junegunn-go-shellwords): New 
variable.
    
    Change-Id: I5368249f9dc8c337f98f5bbbc6f0b089eb15388a
---
 gnu/packages/golang-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 3f3180eec7..ed9fb95422 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -11140,6 +11140,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")

Reply via email to