[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/07: gnu: Add go-github-com-zeebo-assert.
From: |
guix-commits |
Subject: |
04/07: gnu: Add go-github-com-zeebo-assert. |
Date: |
Fri, 22 Nov 2024 11:01:25 -0500 (EST) |
avp pushed a commit to branch master
in repository guix.
commit 8398642ec371a8c68b8e42a1b263ccf5ca5e3351
Author: Artyom V. Poptsov <poptsov.artyom@gmail.com>
AuthorDate: Thu Nov 14 22:55:00 2024 +0300
gnu: Add go-github-com-zeebo-assert.
* gnu/packages/golang-crypto.scm (go-github-com-zeebo-assert): New variable.
Change-Id: I03a752d42e016acd416087d4426864384ffc8a05
Reviewed-by: Sharlatan Hellseher <sharlatanus@gmail.com>
---
gnu/packages/golang-check.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm
index 3e33cdb976..7e5abf9f09 100644
--- a/gnu/packages/golang-check.scm
+++ b/gnu/packages/golang-check.scm
@@ -22,6 +22,7 @@
;;; Copyright © 2024 Greg Hogan <code@greghogan.com>
;;; Copyright © 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
+;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1402,6 +1403,30 @@ gracefully enhance standard library testing package and
behaviors of the
@command{go test} command.")
(license license:expat)))
+(define-public go-github-com-zeebo-assert
+ (package
+ (name "go-github-com-zeebo-assert")
+ (version "1.3.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/zeebo/assert";)
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0xfklg04ic4xl5q7xy913jzvn2v9bxmrsnm4lyjqznninysgs9xb"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/zeebo/assert"))
+ (home-page "https://github.com/zeebo/assert";)
+ (synopsis "High-level assertions for tests")
+ (description
+ "@code{assert} is a testing library that provides high-level assertions
API
+based on Go @code{testing} library procedures.")
+ (license license:cc0)))
+
(define-public go-go-uber-org-goleak
(package
(name "go-go-uber-org-goleak")
- branch master updated (2fec407b27 -> 043f024627), guix-commits, 2024/11/22
- 02/07: gnu: Add go-github-com-libdns-libdns., guix-commits, 2024/11/22
- 03/07: gnu: Add go-github-com-mholt-acmez., guix-commits, 2024/11/22
- 04/07: gnu: Add go-github-com-zeebo-assert.,
guix-commits <=
- 06/07: gnu: Add go-github-com-zeebo-blake3., guix-commits, 2024/11/22
- 01/07: gnu: Add go-github-com-caddyserver-zerossl., guix-commits, 2024/11/22
- 05/07: gnu: Add go-github-com-zeebo-pcg., guix-commits, 2024/11/22
- 07/07: gnu: Add go-github-com-caddyserver-certmagic., guix-commits, 2024/11/22