From 29d8d15eed14d4af404155e79e4135805fe09818 Mon Sep 17 00:00:00 2001 From: Patrick Norton Date: Mon, 24 Nov 2025 11:46:33 -0500 Subject: [PATCH] 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 --- 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 e021e3c758ff70714650d9ff32328e70c06746df..4a3080a57758f697d43a3202c85cbeed3dc07e1a 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")