guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 18d777842e8d0c704471c2a411ea27721c75a1ec
Author: jgart <[email protected]>
AuthorDate: Fri Nov 21 09:46:48 2025 -0600

    gnu: Add go-github-com-influxdata-cron.
    
    * gnu/packages/golang-xyz.scm (go-github-com-influxdata-cron): New variable.
    
    Change-Id: If9988b39dcac7173b9df41955484589cca356cc4
---
 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 0b0bc1e256..89cc374679 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -70,6 +70,7 @@
 ;;; Copyright © 2025 Tomás Ortín Fernández <[email protected]>
 ;;; Copyright © 2025 Allan Adair <[email protected]>
 ;;; Copyright © 2025 Patrick Norton <[email protected]>
+;;; Copyright © 2025 jgart <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -11235,6 +11236,29 @@ ABI}.")
                  (substitute* (find-files "." "\\.go$")
                    (("dario.cat/mergo") import-path)))))))))))
 
+(define-public go-github-com-influxdata-cron
+  (package
+    (name "go-github-com-influxdata-cron")
+    (version "0.0.0-20201006132531-4bb0a200dcbe")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/influxdata/cron";)
+              (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1awwqmm265gd9pl3khfxzyn0mwsvk2jfm84w465qsj94l1h8irs9"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/influxdata/cron"))
+    (home-page "https://github.com/influxdata/cron";)
+    (synopsis "Cron parser in Ragel and Go")
+    (description
+     "This package provides a fast non-allocating cron parser in Ragel and 
Go.")
+    (license license:expat)))
+
 (define-public go-github-com-invopop-yaml
   (package
     (name "go-github-com-invopop-yaml")

Reply via email to