summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-06-25 22:43:35 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-06-27 00:16:54 +0100
commit0a2809155b2deebf4d17c4fb2574256cc55dd6e7 (patch)
tree3b8fd035a6674e29fae06bd91b26ad19db46e02f
parent21697522bb8c28867c10623f4bcbc1f6f3f94385 (diff)
gnu: Add go-github-com-gdgvda-cron.
* gnu/packages/golang-xyz.scm (go-github-com-gdgvda-cron): New variable. Relates-to: guix/guix!9540
-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 8747b98d223..015c9a8f8c5 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -11593,6 +11593,31 @@ also favors portability, and includes support for all POSIX systems.")
11593library in go standard library.") 11593library in go standard library.")
11594 (license license:expat))) 11594 (license license:expat)))
11595 11595
11596(define-public go-github-com-gdgvda-cron
11597 (package
11598 (name "go-github-com-gdgvda-cron")
11599 (version "0.7.0")
11600 (source
11601 (origin
11602 (method git-fetch)
11603 (uri (git-reference
11604 (url "https://github.com/gdgvda/cron")
11605 (commit (string-append "v" version))))
11606 (file-name (git-file-name name version))
11607 (sha256
11608 (base32 "05d8dglbqwravim5fd9s2454qyv64vy6bbs39x4l3bkwbhdfr08x"))))
11609 (build-system go-build-system)
11610 (arguments
11611 (list
11612 #:import-path "github.com/gdgvda/cron"))
11613 (home-page "https://github.com/gdgvda/cron")
11614 (synopsis "Cron library for Go")
11615 (description
11616 "Package cron implements a cron spec parser and job runner. This package
11617provides an independent fork of the @code{https://github.com/robfig/cron}
11618project,")
11619 (license license:expat)))
11620
11596(define-public go-github-com-gedex-inflector 11621(define-public go-github-com-gedex-inflector
11597 (package 11622 (package
11598 (name "go-github-com-gedex-inflector") 11623 (name "go-github-com-gedex-inflector")