guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 8ff571b0eac86d50b46dae900e3641d4130caf4b
Author: Arun Isaac <[email protected]>
AuthorDate: Sun Feb 8 21:05:45 2026 +0000

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

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 1337e65fb0..c7e62fdf23 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -2325,6 +2325,35 @@ cluster segmentation algorithm.")
          (package-arguments go-github-com-apparentlymart-go-textseg-v15)
        ((#:import-path _) "github.com/apparentlymart/go-textseg/v16")))))
 
+(define-public go-github-com-araddon-dateparse
+  (package
+    (name "go-github-com-araddon-dateparse")
+    (version "0.0.0-20210429162001-6b43995a97de")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/araddon/dateparse";)
+              (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0p60rdbfk7d97hb1kk225lvnqvhw04d822782hn66i4yfvigrraj"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/araddon/dateparse"))
+    (native-inputs
+     (list go-github-com-stretchr-testify))
+    (propagated-inputs
+     (list go-github-com-scylladb-termtables))
+    (home-page "https://github.com/araddon/dateparse";)
+    (synopsis "Go date parser")
+    (description
+     "This package parses date strings without knowing the format in advance.
+It uses a scanner to read bytes and use a state machine to find format.  It is
+much faster than shotgun based parse methods.")
+    (license license:expat)))
+
 (define-public go-github-com-arbovm-levenshtein
   (package
     (name "go-github-com-arbovm-levenshtein")

Reply via email to