From 28b519e8a9f9e395dff8ab0c283c7bc6656ecc00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Tempel?= Date: Mon, 1 Dec 2025 19:19:16 +0100 Subject: [PATCH] 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 --- 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 abdc10a2ec0de1604b65b3e5d9b3e0132d75133a..6642a73f855ac101bfcde4866fffc5ca87d84abd 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")