[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/10: gnu: Add go-github-com-frankban-quicktest.
From: |
guix-commits |
Subject: |
07/10: gnu: Add go-github-com-frankban-quicktest. |
Date: |
Tue, 27 Oct 2020 13:01:23 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 719b9541aee4ff12e4a115f900082cbed6a77cd9
Author: Ryan Prior <rprior@protonmail.com>
AuthorDate: Mon Oct 12 03:50:15 2020 +0000
gnu: Add go-github-com-frankban-quicktest.
* gnu/packages/golang.scm (go-github-com-frankban-quicktest): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/golang.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 27ba822..b824ef8 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -5847,3 +5847,30 @@ log package. All the functionality of the built-in
package still exists and
is unchanged. This package contains a series of small enhancements and
additions.")
(license license:bsd-3))))
+
+(define-public go-github-com-frankban-quicktest
+ (package
+ (name "go-github-com-frankban-quicktest")
+ (version "1.11.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/frankban/quicktest")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0b1b44b2hli2p969gqz30z8v9z6ahlklpqzi17nwk1lsjz9yv938"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/frankban/quicktest"))
+ (propagated-inputs
+ `(("go-github-com-google-go-cmp-cmp" ,go-github-com-google-go-cmp-cmp)
+ ("go-github-com-kr-pretty" ,go-github-com-kr-pretty)))
+ (home-page "https://github.com/frankban/quicktest")
+ (synopsis "Quick helpers for testing Go applications")
+ (description
+ "Package quicktest provides a collection of Go helpers for writing
+tests.")
+ (license license:expat)))
- branch master updated (f0c6093 -> 6799e6e), guix-commits, 2020/10/27
- 01/10: services: hpcguix-web: Set 'XDG_CACHE_HOME' to a writable directory., guix-commits, 2020/10/27
- 02/10: gnu: Add gmnisrv., guix-commits, 2020/10/27
- 05/10: gnu: Add go-golang-org-x-xerrors., guix-commits, 2020/10/27
- 03/10: services: Add gmnisrv web service., guix-commits, 2020/10/27
- 10/10: maint: Include 'guix-daemon.cil.in' in the distribution., guix-commits, 2020/10/27
- 04/10: gnu: alacritty: Add search path for 'TERMINFO_DIRS'., guix-commits, 2020/10/27
- 08/10: gnu: Add go-github-com-bep-golibsass., guix-commits, 2020/10/27
- 06/10: gnu: go-github-com-google-go-cmp-cmp: Update to 0.5.2., guix-commits, 2020/10/27
- 09/10: maint: Add 'etc/gnu-store.mount.in' to the distribution., guix-commits, 2020/10/27
- 07/10: gnu: Add go-github-com-frankban-quicktest.,
guix-commits <=