1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 02:50:45 +02:00

gnu: go-github-com-robfig-cron-v3: Move to golang-xyz.

* gnu/packages/golang.scm (go-github-com-robfig-cron-v3): Move
from here ...
* gnu/packages/golang-xyz.scm: ... to here.

Change-Id: I6096fa9b398fd12ea1733565658b99054a7512ce
This commit is contained in:
Sharlatan Hellseher 2025-01-06 20:50:23 +00:00
parent 9a52976e30
commit 0887597c5f
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 24 additions and 23 deletions

View file

@ -11056,6 +11056,30 @@ exploration and data entry.")
@url{https://unicode.org/reports/tr29/, Unicode Standard Annex #29}.")
(license license:expat)))
(define-public go-github-com-robfig-cron-v3
(package
(name "go-github-com-robfig-cron-v3")
(version "3.0.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/robfig/cron")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1agzbw2dfk2d1mpmddr85s5vh6ygm8kqrvfg87i9d2wqnlsnliqm"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/robfig/cron/v3"))
(home-page "https://godoc.org/github.com/robfig/cron")
(synopsis "Cron library for Go")
(description
"This package provides a cron library for Go. It implements a cron spec
parser and job runner.")
(license license:expat)))
(define-public go-github-com-rogpeppe-fastuuid
(package
(name "go-github-com-rogpeppe-fastuuid")