~ruther/guix-local

29d8d15eed14d4af404155e79e4135805fe09818 — Patrick Norton 4 months ago aa7c7f7
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 <sharlatanus@gmail.com>
1 files changed, 28 insertions(+), 0 deletions(-)

M gnu/packages/golang-web.scm
M gnu/packages/golang-web.scm => gnu/packages/golang-web.scm +28 -0
@@ 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")