biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / hdate / default.nix
blob899630b690990965064a9b03db1ee42c4f9b4216
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   version = "1.6.02";
5   pname = "hdate";
6   src = fetchurl {
7     url = "https://sourceforge.net/projects/libhdate/files/libhdate/libhdate-${version}/libhdate-${version}.tar.bz2";
8     sha256 = "3c930a8deb57c01896dc37f0d7804e5a330ee8e88c4ff610b71f9d2b02c17762";
9   };
10   meta = {
11     description = "Hebrew calendar and solar astronomical times library and utilities";
12     homepage = "https://sourceforge.net/projects/libhdate/";
13     license = lib.licenses.gpl3;
14     maintainers = with lib.maintainers; [ CharlesHD ];
15   };