@@ -9968,3 +9968,27 @@ (define-public go-mvdan-cc-xurls
"This package provides a library for extracting URLs from plain text
using regular expressions in Go.")
(license license:bsd-3)))
+
+(define-public go-github-com-google-shlex
+ (let ((commit "c34317bd91bf98fab745d77b03933cf8769299fe")
+ (revision "0"))
+ (package
+ (name "go-github-com-google-shlex")
+ (version "1.2.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "github.com/google/shlex")
+ (commit commit)))
+ (file-name (git-file-name name commit))
+ (sha256
+ (base32
+ "00qivza4hkllfkar2vpqmyxybi0fwqipgijv61dgapq4xddxdq0r"))))
+ (build-system go-build-system)
+ (arguments (list #:import-path "github.com/google/shlex"))
+ (home-page "github.com/google/shlex")
+ (synopsis "Simple shell lexer for Go")
+ (description
+ "Shlex is a simple shell-syntax lexer for Go that supports
+quoting, commenting, and escaping.")
+ (license license:asl2.0))))