guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 29d8d15eed14d4af404155e79e4135805fe09818
Author: Patrick Norton <[email protected]>
AuthorDate: Mon Nov 24 11:46:33 2025 -0500

    gnu: Add go-github-com-appscode-go-querystring.
    
    * gnu/packages/golang-web.scm (go-github-com-appscode-go-querystring):
    New variable.
    
    Change-Id: I8c6e9616a65b6cdb88c74efa7eae484d13ac711f
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/golang-web.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index e021e3c758..4a3080a577 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -1078,6 +1078,34 @@ representing the network and then the remaining suffix 
bits represent the
 host.")
     (license license:expat)))
 
+(define-public go-github-com-appscode-go-querystring
+  (package
+    (name "go-github-com-appscode-go-querystring")
+    (version "0.0.0-20170504095604-0126cfb3f1dc")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/appscode/go-querystring";)
+              (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0jzpdf6sdgm1xw5b5mkqiaz7l4rs677habrwclfpc3szxkllclks"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      ;; (*testing.common).Errorf format %q has arg s of wrong type
+      #:test-flags
+      #~(list "-vet=off")
+      #:skip-build? #t
+      #:import-path "github.com/appscode/go-querystring"))
+    (home-page "https://github.com/appscode/go-querystring";)
+    (synopsis "Encode structs into URL query parameters")
+    (description
+     "This package is designed to assist in scenarios where you want to 
construct a
+URL using a struct that represents the URL query parameters.")
+    (license license:bsd-3)))
+
 (define-public go-github-com-arceliar-ironwood
   (package
     (name "go-github-com-arceliar-ironwood")

Reply via email to