1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-15 03:20:43 +02:00

gnu: Add go-github-com-jacobsa-timeutil.

* gnu/packages/golang-xyz.scm (go-github-com-jacobsa-timeutil): New variable.

Change-Id: I8b23866135694c3d071dc6d1a57dfcfd6ad21d4a
This commit is contained in:
Sharlatan Hellseher 2024-12-19 17:04:45 +00:00
parent a46595d886
commit 852d26ed86
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -5522,6 +5522,41 @@ any concurrent code of its own.")
(propagated-inputs
(list go-golang-org-x-sync))))
(define-public go-github-com-jacobsa-timeutil
(package
(name "go-github-com-jacobsa-timeutil")
(version "0.0.0-20170205232429-577e5acbbcf6")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/jacobsa/timeutil")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "0vp6ngfyw3z3n7fzqpijqh26mnwnhapy5x4kzly1qb8gmv15a8xb"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/jacobsa/timeutil"))
(native-inputs
(list go-github-com-jacobsa-oglematchers
go-github-com-jacobsa-ogletest))
(home-page "https://github.com/jacobsa/timeutil")
(synopsis "Code supplementing Go's time package")
(description
"This package contains code that supplements the
@url{http://godoc.org/time, time} package from the Go standard library.
In particular:
@itemize
@item a Clock interface, with a fake implementation that can be used in tests
@item implementations of
@url{https://godoc.org/github.com/jacobsa/oglematchers#Matcher,
oglematchers.Matcher} for time values
@end itemize")
(license license:asl2.0)))
(define-public go-github-com-jbenet-go-random
(package
(name "go-github-com-jbenet-go-random")