me
/
guix
Archived
1
0
Fork 0

gnu: Add go-github-com-hebcal-hebcal-go.

* gnu/packages/golang.scm (go-github-com-hebcal-hebcal-go): New variable.

Signed-off-by: Christopher Baines <mail@cbaines.net>
master
Felix Lechner 2022-11-20 09:24:01 -08:00 committed by Christopher Baines
parent b0307b7c12
commit 4ca2159bab
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 43 additions and 0 deletions

View File

@ -2537,6 +2537,49 @@ sunset times from geographical coordinates and a date.")
Hebrew letters.") Hebrew letters.")
(license license:bsd-2)))) (license license:bsd-2))))
(define-public go-github-com-hebcal-hebcal-go
(let ((commit "d42e881860cfc9e8249fc79f268091c3c4d36b0d")
(revision "0"))
(package
(name "go-github-com-hebcal-hebcal-go")
(version (git-version "0.9.11" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/hebcal/hebcal-go")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"1m9akb8pwxchpaci05gambshrzw626gsrfhl25f36vjl7mq5292n"))))
(build-system go-build-system)
(arguments
(list #:import-path "github.com/hebcal/hebcal-go"
;; Source-only package
#:tests? #f
#:phases
#~(modify-phases %standard-phases
;; Source-only package
(delete 'build))))
(native-inputs
(list go-github-com-stretchr-testify))
(propagated-inputs
(list go-github-com-hebcal-gematriya
go-github-com-nathan-osman-go-sunrise))
(home-page "https://github.com/hebcal/hebcal-go")
(synopsis "Go library for the Hebcal perpetual Jewish calendar")
(description
"This package provides a library for conversion between Hebrew
and Gregorian dates, and generation of lists of Jewish holidays for
a given year. Shabbat and holiday candle lighting and havdalah times
are approximated based on location.
Torah readings, Daf Yomi, and counting of the Omer can also be
specified. Algorithms are included to calculate yahrzeits, birthdays,
and anniversaries.")
(license license:gpl2+))))
(define-public go-github-com-aws-sdk (define-public go-github-com-aws-sdk
(package (package
(name "go-github-com-aws-sdk") (name "go-github-com-aws-sdk")