[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#66603] [PATCH 24/29] gnu: Add go-github-com-kballard-go-shellquote.
From: |
Wilko Meyer |
Subject: |
[bug#66603] [PATCH 24/29] gnu: Add go-github-com-kballard-go-shellquote. |
Date: |
Wed, 18 Oct 2023 11:38:22 +0200 |
* gnu/packages/golang.scm (go-github-com-kballard-go-shellquote): New variable.
---
gnu/packages/golang.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index bf5caf9c2c..166270d201 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -8766,6 +8766,29 @@ (define-public go-github-com-shirou-gopsutil
(home-page "https://github.com/shirou/gopsutil")
(license license:bsd-3))))
+(define-public go-github-com-kballard-go-shellquote
+ (package
+ (name "go-github-com-kballard-go-shellquote")
+ (version "0.0.0-20180428030007-95032a82bc51")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/kballard/go-shellquote")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1rspvmnsikdq95jmx3dykxd4k1rmgl98ryjrysvl0cf18hl1vq80"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/kballard/go-shellquote"))
+ (home-page "https://github.com/kballard/go-shellquote")
+ (synopsis #f)
+ (description
+ "Shellquote provides utilities for joining/splitting strings using sh's
+word-splitting rules.")
+ (license license:expat)))
+
(define-public go-github-com-danwakefield-fnmatch
(let ((commit "cbb64ac3d964b81592e64f957ad53df015803288")
(revision "0"))
--
2.41.0
- [bug#66603] [PATCH 18/29] gnu: Add go-github-com-google-pprof., (continued)
- [bug#66603] [PATCH 18/29] gnu: Add go-github-com-google-pprof., Wilko Meyer, 2023/10/18
- [bug#66603] [PATCH 28/29] gnu: Add go-github-com-delthas-go-libnp., Wilko Meyer, 2023/10/18
- [bug#66603] [PATCH 29/29] gnu: Add go-github-com-delthas-go-localeinfo., Wilko Meyer, 2023/10/18
- [bug#66603] [PATCH 14/29] gnu: Add go-github-com-gobwas-pool., Wilko Meyer, 2023/10/18
- [bug#66603] [PATCH 07/29] gnu: Add go-github-com-chzyer-test., Wilko Meyer, 2023/10/18
- [bug#66603] [PATCH 13/29] gnu: Add go-github-com-gobwas-httphead., Wilko Meyer, 2023/10/18
- [bug#66603] [PATCH 25/29] gnu: Add go-github-com-facette-natsort., Wilko Meyer, 2023/10/18
- [bug#66603] [PATCH 15/29] gnu: Add go-github-com-gobwas-ws., Wilko Meyer, 2023/10/18
- [bug#66603] [PATCH 22/29] gnu: Add go-github-com-johnkerl-miller., Wilko Meyer, 2023/10/18
- [bug#66603] [PATCH 12/29] gnu: Add go-github-com-chromedp-sysutil., Wilko Meyer, 2023/10/18
- [bug#66603] [PATCH 24/29] gnu: Add go-github-com-kballard-go-shellquote.,
Wilko Meyer <=