guix-commits
[Top][All Lists]
Advanced

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

07/10: gnu: Add go-gopkg.in-tomb.v2.


From: Christopher Baines
Subject: 07/10: gnu: Add go-gopkg.in-tomb.v2.
Date: Tue, 30 Jan 2018 02:45:04 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit 210c6d959d9a6f6dec60c5f4592bbca7afc11ae8
Author: Christopher Baines <address@hidden>
Date:   Sun Jan 21 10:52:34 2018 +0000

    gnu: Add go-gopkg.in-tomb.v2.
    
    * gnu/packages/golang.scm (go-gopkg.in-tomb.v2): New variable.
---
 gnu/packages/golang.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 323786c..b8eb90e 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -471,3 +471,28 @@ functionality is similar to the go builtin @code{flag} 
package, but
 way of specifying command line options.")
     (home-page "https://github.com/jessevdk/go-flags";)
     (license license:bsd-3)))
+
+(define-public go-gopkg.in-tomb.v2
+  (let ((commit "d5d1b5820637886def9eef33e03a27a9f166942c")
+        (revision "0"))
+    (package
+      (name "go-gopkg.in-tomb.v2")
+      (version (string-append "0.0.0-" revision "." (string-take commit 7)))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/go-tomb/tomb.git";)
+                      (commit commit)))
+                (file-name (string-append name "-" version ".tar.gz"))
+                (sha256
+                 (base32
+                  "1sv15sri99szkdz1bkh0ir46w9n8prrwx5hfai13nrhkawfyfy10"))))
+      (build-system go-build-system)
+      (arguments
+       '(#:import-path "gopkg.in/tomb.v2"))
+      (synopsis "@code{tomb} handles clean goroutine tracking and termination")
+      (description
+       "The @code{tomb} package handles clean goroutine tracking and
+termination.")
+      (home-page "https://gopkg.in/tomb.v2";)
+      (license license:bsd-3))))



reply via email to

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