gnu: Add go-github-com-jmhodges-clock.

* gnu/packages/golang-check.scm (go-github-com-jmhodges-clock): New variable.

Change-Id: I0fe9ad9addebc951c2d8776701453adecfa45c76
This commit is contained in:
Sharlatan Hellseher 2024-12-30 16:46:40 +00:00
parent 9623f6d92c
commit f5eaca3cba
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -994,6 +994,30 @@ Many times certain facilities are not available, or tests must run
differently.") differently.")
(license license:expat))) (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 (define-public go-github-com-maruel-panicparse
(package (package
(name "go-github-com-maruel-panicparse") (name "go-github-com-maruel-panicparse")