guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#31670] [PATCH 1/3] gnu: Add go-github-com-gorilla-mux.


From: Rouby Pierre-Antoine
Subject: [bug#31670] [PATCH 1/3] gnu: Add go-github-com-gorilla-mux.
Date: Thu, 31 May 2018 17:34:53 +0200

* 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






reply via email to

[Prev in Thread] Current Thread [Next in Thread]