summaryrefslogtreecommitdiff
path: root/gnu/packages/golang-check.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-12-30 16:46:40 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-01-21 23:42:41 +0000
commitf5eaca3cbaa0379a597518b82cc9c869f55fa0d3 (patch)
tree6626495865a0a7cb0e1d01ce93f3b23ea521ac09 /gnu/packages/golang-check.scm
parent9623f6d92cc3cfe3e8f89fc67271c3237f5c0bff (diff)
gnu: Add go-github-com-jmhodges-clock.
* gnu/packages/golang-check.scm (go-github-com-jmhodges-clock): New variable. Change-Id: I0fe9ad9addebc951c2d8776701453adecfa45c76
Diffstat (limited to 'gnu/packages/golang-check.scm')
-rw-r--r--gnu/packages/golang-check.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm
index a8a765f8d6..d3e2ef5b10 100644
--- a/gnu/packages/golang-check.scm
+++ b/gnu/packages/golang-check.scm
@@ -994,6 +994,30 @@ Many times certain facilities are not available, or tests must run
differently.")
(license license:expat)))
+(define-public go-github-com-jmhodges-clock
+ (package
+ (name "go-github-com-jmhodges-clock")
+ (version "1.2.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jmhodges/clock")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0ys85dlg3zzzwl7p46kf5gckjm1ddgr5dai42v4p3wn9nm6ln252"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/jmhodges/clock"))
+ (home-page "https://github.com/jmhodges/clock")
+ (synopsis "System time abstraction Golang library")
+ (description
+ "Package clock provides an abstraction for system time that enables
+testing of time-sensitive code.")
+ (license license:expat)))
+
(define-public go-github-com-maruel-panicparse
(package
(name "go-github-com-maruel-panicparse")