1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 10:56:53 +00:00
nixpkgs/pkgs/tools/misc/hebcal/default.nix

27 lines
777 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
2017-07-14 05:40:35 +01:00
stdenv.mkDerivation rec {
2020-10-18 12:34:14 +01:00
version = "4.22";
pname = "hebcal";
2017-07-14 05:40:35 +01:00
src = fetchFromGitHub {
owner = "hebcal";
repo = "hebcal";
rev = "v${version}";
2020-10-18 12:34:14 +01:00
sha256 = "0bm29n51qi9q4vx4qsz3l9l1wvpvsk138zixfl5f5yz4kngzbx24";
2017-07-14 05:40:35 +01:00
};
nativeBuildInputs = [ autoreconfHook ];
doCheck = true;
meta = with lib; {
homepage = "https://hebcal.github.io";
2017-07-14 05:40:35 +01: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;
};
}