guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 28b519e8a9f9e395dff8ab0c283c7bc6656ecc00
Author: Sören Tempel <[email protected]>
AuthorDate: Mon Dec 1 19:19:16 2025 +0100

    gnu: Add go-github-com-tj-go-naturaldate.
    
    * gnu/packages/golang-xyz.scm (go-github-com-tj-go-naturaldate): New 
variable.
    Change-Id: I78741cd34c41a6b140c51aa41991383574151195
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index abdc10a2ec..6642a73f85 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -22315,6 +22315,31 @@ flushing entries at a given size or interval, useful 
for cases such as
 batching log events.")
     (license license:expat)))
 
+(define-public go-github-com-tj-go-naturaldate
+  (package
+    (name "go-github-com-tj-go-naturaldate")
+    (version "1.3.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/tj/go-naturaldate";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "12d7nf1jd7nk9r8ifn1hr21a7m4yb1garmiw2grrsi5zsqsh2jb1"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/tj/go-naturaldate"))
+    (propagated-inputs (list go-github-com-tj-assert))
+    (home-page "https://github.com/tj/go-naturaldate";)
+    (synopsis "Provides natural date time parsing")
+    (description
+     "This package parses human-friendly relative date/time ranges.")
+    (license license:expat)))
+
+
 (define-public go-github-com-tj-go-spin
   (package
     (name "go-github-com-tj-go-spin")

Reply via email to