python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / hebcal / default.nix
blob050cc63f6a5d506968b7f0d3cc590aeed0888bcc
1 { lib, stdenv, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   version = "4.24";
5   pname = "hebcal";
7   src = fetchFromGitHub {
8     owner = "hebcal";
9     repo = "hebcal";
10     rev = "v${version}";
11     sha256 = "sha256-iWp2S3s8z/y4dZ66Ogqu7Yf4gTUvSS1J5F7d0ifRbcY=";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
16   doCheck = true;
18   meta = with lib; {
19     homepage = "https://hebcal.github.io";
20     description = "A perpetual Jewish Calendar";
21     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.";
22     license = licenses.gpl2;
23     maintainers = [ maintainers.hhm ];
24     platforms = platforms.all;
25   };