guix_mirror_bot pushed a commit to branch master
in repository guix.
commit b8d3f4c45ad0c472f7792a27a25e0aa311335043
Author: Arthur Rodrigues <[email protected]>
AuthorDate: Thu Jan 29 17:36:03 2026 -0300
gnu: Add go-github-com-jinzhu-now.
* gnu/packages/golang-xyz.scm (go-github-com-jinzhu-now): New variable.
Change-Id: I8580882ef92796b96c738210faa00d9547317161
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 4497502e50..855e5759d6 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -13080,6 +13080,30 @@ destinations: the console and a log file.")
struct to another.")
(license license:expat)))
+(define-public go-github-com-jinzhu-now
+ (package
+ (name "go-github-com-jinzhu-now")
+ (version "1.1.5")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jinzhu/now")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "10ywpaxs6d3y8gqlzx6rh3yw4ya83bnx0hrs0k0wq5bxbjhfmlil"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/jinzhu/now"))
+ (home-page "https://github.com/jinzhu/now")
+ (synopsis "Human-friendly time formatting for Golang")
+ (description
+ "This package provides a Go library to print timestamps in different
+formats.")
+ (license license:expat)))
+
(define-public go-github-com-jkeiser-iter
(package
(name "go-github-com-jkeiser-iter")