sharlatan pushed a commit to branch go-team in repository guix. commit 994d038f0eaaf804ac52b5abbbf9b1c6ab7fddf2 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Sun Dec 22 16:25:28 2024 +0000
gnu: Add go-github-com-hebcal-hdate. * gnu/packages/golang-xyz.scm (go-github-com-hebcal-hdate): New variable. Change-Id: Ib259acda2c53e4efab5325f4b560ff3275c35dca --- gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 040841ed09..a72ef33264 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -5021,6 +5021,31 @@ expressing configuration which is easy for both humans and machines to read.") Die) day numbers.") (license license:gpl2))) +(define-public go-github-com-hebcal-hdate + (package + (name "go-github-com-hebcal-hdate") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hebcal/hdate") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0i3r3ng9ygd7ly59znw948im4z4sbp23jqj3hhgxabwhh6b8mdmf")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/hebcal/hdate")) + (native-inputs (list go-github-com-stretchr-testify)) + (propagated-inputs (list go-github-com-hebcal-greg)) + (home-page "https://github.com/hebcal/hdate") + (synopsis "Converts between Hebrew and Gregorian dates") + (description + "Hebcal's hdate package converts between Hebrew and Gregorian dates.") + (license license:gpl2))) + (define-public go-github-com-hhrutter-tiff (package (name "go-github-com-hhrutter-tiff")