summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac <arunisaac@systemreboot.net>2026-02-06 01:09:45 +0000
committerjgart <jgart@dismail.de>2026-02-06 14:25:51 -0600
commitdc55d1315dd91b2c74e002204c658babf4efd771 (patch)
treeb8f91d31167d4a1e81359fdf476ec18342e8d299
parent87d1a98830b8079f65321d414d109f885e1401bf (diff)
gnu: Add go-github-com-araddon-dateparse.
* gnu/packages/golang-xyz.scm (go-github-com-araddon-dateparse): New variable. Signed-off-by: jgart <jgart@dismail.de>
-rw-r--r--gnu/packages/golang-xyz.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index bd4b3d8dfb9..3155f1d4819 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -15088,6 +15088,31 @@ Printf/Sprintf etc.")
15088dates and other date-only dates in Go.") 15088dates and other date-only dates in Go.")
15089 (license license:bsd-3))) 15089 (license license:bsd-3)))
15090 15090
15091(define-public go-github-com-araddon-dateparse
15092 (package
15093 (name "go-github-com-araddon-dateparse")
15094 (version "0.0.0-20210429162001-6b43995a97de")
15095 (source
15096 (origin
15097 (method git-fetch)
15098 (uri (git-reference
15099 (url "https://github.com/araddon/dateparse")
15100 (commit (go-version->git-ref version))))
15101 (file-name (git-file-name name version))
15102 (sha256
15103 (base32 "0p60rdbfk7d97hb1kk225lvnqvhw04d822782hn66i4yfvigrraj"))))
15104 (build-system go-build-system)
15105 (arguments
15106 (list #:import-path "github.com/araddon/dateparse"))
15107 (propagated-inputs (list go-github-com-scylladb-termtables
15108 go-github-com-stretchr-testify))
15109 (home-page "https://github.com/araddon/dateparse")
15110 (synopsis "Go date parser")
15111 (description "This package parses date strings without knowing the format
15112in advance. It uses a scanner to read bytes and use a state machine to find
15113format. It is much faster than shotgun based parse methods.")
15114 (license license:expat)))
15115
15091(define-public go-github-com-lucasb-eyer-go-colorful 15116(define-public go-github-com-lucasb-eyer-go-colorful
15092 (package 15117 (package
15093 (name "go-github-com-lucasb-eyer-go-colorful") 15118 (name "go-github-com-lucasb-eyer-go-colorful")