guix-commits
[Top][All Lists]
Advanced

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

03/06: gnu: Add go-github-com-emicklei-go-restful.


From: Leo Famulari
Subject: 03/06: gnu: Add go-github-com-emicklei-go-restful.
Date: Tue, 29 May 2018 18:40:11 -0400 (EDT)

lfam pushed a commit to branch master
in repository guix.

commit 7979f7df9a6dc846295d1861229cee11483b373c
Author: Rouby Pierre-Antoine <address@hidden>
Date:   Mon May 28 17:02:40 2018 +0200

    gnu: Add go-github-com-emicklei-go-restful.
    
    * gnu/packages/golang.scm (go-github-com-emicklei-go-restful): New variable.
    
    Signed-off-by: Leo Famulari <address@hidden>
---
 gnu/packages/golang.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 15db432..12adbff 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1521,3 +1521,28 @@ interfaces in Go.")
       (description "Semver is a library for Semantic versioning written in 
Go.")
       (license license:expat))))
 
+(define-public go-github-com-emicklei-go-restful
+  (let ((commit "89ef8af493ab468a45a42bb0d89a06fccdd2fb22")
+        (revision "0"))
+    (package
+      (name "go-github-com-emicklei-go-restful")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/emicklei/go-restful.git";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "0rrlfcfq80fkxifpih6bq31vavb5mf4530xz51pp9pq1mn2fzjfh"))))
+      (build-system go-build-system)
+      (arguments
+       '(#:import-path "github.com/emicklei/go-restful"))
+      (home-page "https://github.com/emicklei/go-restful";)
+      (synopsis "Build REST-style web services using Go")
+      (description "This package provides @code{go-restful}, which helps
+developers to use @code{http} methods explicitly and in a way that's consistent
+with the HTTP protocol definition.")
+      (license license:expat))))



reply via email to

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