diff options
author | Felix Lechner <felix.lechner@lease-up.com> | 2022-11-20 09:24:02 -0800 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2022-11-24 09:44:25 +0000 |
commit | 963e86af87216e8c1f4967e8047e8de415bb1000 (patch) | |
tree | 1293313c573331102580c197efc41f3fd14edc7a | |
parent | 4ca2159bab67e9bd2f64e0db244f4eb3e03fd53e (diff) | |
download | guix-963e86af87216e8c1f4967e8047e8de415bb1000.tar.gz guix-963e86af87216e8c1f4967e8047e8de415bb1000.zip |
gnu: Add hebcal.
* gnu/packages/calendar.scm (hebcal): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net>
-rw-r--r-- | gnu/packages/calendar.scm | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/gnu/packages/calendar.scm b/gnu/packages/calendar.scm index 6583810277..32a8f23f19 100644 --- a/gnu/packages/calendar.scm +++ b/gnu/packages/calendar.scm @@ -34,6 +34,7 @@ #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) + #:use-module (guix build-system go) #:use-module (guix build-system cmake) #:use-module (guix build-system python) #:use-module (gnu packages admin) @@ -45,6 +46,7 @@ #:use-module (gnu packages freedesktop) #:use-module (gnu packages glib) #:use-module (gnu packages gnome) + #:use-module (gnu packages golang) #:use-module (gnu packages gtk) #:use-module (gnu packages icu4c) #:use-module (gnu packages perl) @@ -426,3 +428,38 @@ written in C++ using GTK. Launched once, it pops up a small calendar applet, launched again it closes the running instance. It can additionally be configured to show the current time in different timezones.") (license license:bsd-3)))) + +(define-public hebcal + (let ((commit "2384bb88dc1a41a4a5ae57a29fb58b2dd49a475d") + (revision "0")) + (package + (name "hebcal") + (version (git-version "5.3.0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hebcal/hebcal") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "12rv3b51jb7wcjwmmizz9jkw7gh37yklys4xncvpzgxdkkfgmmjx")))) + (build-system go-build-system) + (arguments + (list #:import-path "github.com/hebcal/hebcal")) + (inputs + (list go-github-com-hebcal-hebcal-go + go-github-com-pborman-getopt)) + (synopsis "Perpetual Jewish Calendar program") + (description + "Hebcal is a program for converting between Hebrew and Gregorian +dates, and generating lists of Jewish holidays for a given year. +Shabbat, holiday candle lighting, and havdalah times are approximated +using your location. + +It can also show daily prayer times, the weekly Torah reading, and +the daily leaf of Talmud. The program can help with counting of the +Omer or with calculation of Hebrew yahrzeits, birthdays, or +anniversaries.") + (home-page "https://github.com/hebcal/hebcal") + (license license:gpl2+)))) |