guix-commits
[Top][All Lists]
Advanced

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

02/10: gnu: Add go-github-com-gorilla-mux.


From: Ludovic Courtès
Subject: 02/10: gnu: Add go-github-com-gorilla-mux.
Date: Mon, 11 Jun 2018 09:19:18 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit e8cdf560b0fd4a544e335107e2b32fb7e63524e2
Author: Rouby Pierre-Antoine <address@hidden>
Date:   Thu May 31 17:34:53 2018 +0200

    gnu: Add go-github-com-gorilla-mux.
    
    * gnu/packages/golang.scm (go-github-com-gorilla-mux): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index d61747a..da87be1 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1621,3 +1621,29 @@ values for the purpose of fuzz testing.")
       (synopsis "Go registry for request variables")
       (description "This package provides @code{gorilla/context}, which is a 
general purpose registry for global request variables in the Go programming 
language.")
       (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 "URL router and dispatcher for Go")
+      (description
+       "Gorilla/Mux implements a request router and dispatcher for matching
+incoming requests with their respective handler.")
+      (license license:bsd-3))))



reply via email to

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