~ruther/guix-local

e74cd5cdd7e4363d312be33f8cf595da2463828c — Sharlatan Hellseher 1 year, 1 month ago 70bb7c5
gnu: Add go-github-com-gorilla-pat.

* gnu/packages/golang-web.scm (go-github-com-gorilla-pat): New variable.

Change-Id: Ifc13b0230f57de25ffc09201d13630e18c1de99f
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
@@ 4545,6 4545,34 @@ web applications.")
incoming requests with their respective handler.")
    (license license:bsd-3)))

(define-public go-github-com-gorilla-pat
  (package
    (name "go-github-com-gorilla-pat")
    (version "1.0.2")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
              (url "https://github.com/gorilla/pat")
              (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0ip2mfhs04j1wbh69iq6d3xz760cb6qmxgv3csns6qrkxfr53av2"))))
    (build-system go-build-system)
    (arguments
     (list
      #:import-path "github.com/gorilla/pat"))
    (propagated-inputs
     (list go-github-com-gorilla-context
           go-github-com-gorilla-mux))
    (home-page "https://github.com/gorilla/pat")
    (synopsis "HTTP router for Golang")
    (description
     "This package is a request router and dispatcher with a pat-like
interface.  It is an alternative to @code{gorilla/mux} that showcases how it
can be used as a base for different API flavors.")
    (license license:bsd-3)))

(define-public go-github-com-gorilla-schema
  (package
    (name "go-github-com-gorilla-schema")