guix-commits
[Top][All Lists]
Advanced

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

06/11: gnu: Add go-gopkg-in-check-v1.


From: Ludovic Courtès
Subject: 06/11: gnu: Add go-gopkg-in-check-v1.
Date: Thu, 12 Jul 2018 18:09:48 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit abd47216b70d6590322a75e6d6f7e85639c82077
Author: Rouby Pierre-Antoine <address@hidden>
Date:   Tue Jul 10 18:06:08 2018 +0200

    gnu: Add go-gopkg-in-check-v1.
    
    * gnu/packages/golang.scm (go-gopkg-in-check-v1): New variable.
    
    Signed-off-by: Ludovic Courtès <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 bcd524d..9393d39 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1922,3 +1922,28 @@ Given a cron expression and a time stamp, you can get 
the next time stamp
 which satisfies the cron expression.")
       (license (list license:gpl3+
                      license:asl2.0)))))
+
+(define-public go-gopkg-in-check-v1
+  (let ((commit "20d25e2804050c1cd24a7eea1e7a6447dd0e74ec")
+        (revision "0"))
+    (package
+      (name "go-gopkg-in-check-v1")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/go-check/check";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np"))))
+      (build-system go-build-system)
+      (arguments
+       '(#:import-path "gopkg.in/check.v1"))
+      (home-page "https://gopkg.in/check.v1";)
+      (synopsis "Test framework for the Go language")
+      (description
+       "This package provides a test library for the Go language.")
+      (license license:asl2.0))))



reply via email to

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