all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#31670] [PATCH 1/3] gnu: Add go-github-com-gorilla-mux.
@ 2018-05-31 15:34 Rouby Pierre-Antoine
  2018-05-31 15:38 ` [bug#31670] [PATCH 2/3] gnu: Add go-github-com-jonboulle-clockwork Rouby Pierre-Antoine
  2018-05-31 15:38 ` [bug#31670] [PATCH 3/3] gnu: Add go-github-com-spf13-pflag Rouby Pierre-Antoine
  0 siblings, 2 replies; 4+ messages in thread
From: Rouby Pierre-Antoine @ 2018-05-31 15:34 UTC (permalink / raw)
  To: 31670; +Cc: Rouby Pierre-Antoine

* gnu/packages/golang.scm (go-github-com-gorilla-mux): New variable.
---
 gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index cad6e5a60..7ab29abe0 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1626,3 +1626,29 @@ values.")
       (description "Gorilla/context is a general purpose registry for global
 request variables.")
       (license license:bsd-3))))
+
+(define-public go-github-com-gorilla-mux
+  (let ((commit "599cba5e7b6137d46ddf58fb1765f5d928e69604")
+        (revision "0"))
+    (package
+      (name "go-github-com-gorilla-mux")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/gorilla/mux.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "0wd6jjii1kg5s0nk3ri6gqriz6hbd6bbcn6x4jf8n7ncrb8qsxyz"))))
+      (build-system go-build-system)
+      (arguments
+       '(#:import-path "github.com/gorilla/mux"))
+      (home-page "https://github.com/gorilla/mux")
+      (synopsis "This package is url router and dispatcher for golang")
+      (description
+       "Gorilla/Mux implements a request router and dispatcher for matching
+incoming requests to their respective handler.")
+      (license license:bsd-3))))
-- 
2.17.0

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-06-11 12:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-31 15:34 [bug#31670] [PATCH 1/3] gnu: Add go-github-com-gorilla-mux Rouby Pierre-Antoine
2018-05-31 15:38 ` [bug#31670] [PATCH 2/3] gnu: Add go-github-com-jonboulle-clockwork Rouby Pierre-Antoine
2018-05-31 15:38 ` [bug#31670] [PATCH 3/3] gnu: Add go-github-com-spf13-pflag Rouby Pierre-Antoine
2018-06-11 12:47   ` bug#31670: " Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.