2017-07-13 21:40:35 -07:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-08-10 05:49:48 -07:00
|
|
|
version = "4.21";
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "hebcal";
|
2017-07-13 21:40:35 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hebcal";
|
|
|
|
repo = "hebcal";
|
|
|
|
rev = "v${version}";
|
2020-08-10 05:49:48 -07:00
|
|
|
sha256 = "0gqjhl5i0hvnpvsg6cfc2z5ckrs66h3jlrdgim62azn3hh5bday2";
|
2017-07-13 21:40:35 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://hebcal.github.io";
|
2017-07-13 21:40:35 -07:00
|
|
|
description = "A perpetual Jewish Calendar";
|
|
|
|
longDescription = "Hebcal is a program which prints out the days in the Jewish calendar for a given Gregorian year. Hebcal is fairly flexible in terms of which events in the Jewish calendar it displays.";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.hhm ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|