2021-01-15 05:42:41 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2018-08-20 10:16:21 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "1.6.02";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "hdate";
|
2018-08-20 10:16:21 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://sourceforge.net/projects/libhdate/files/libhdate/libhdate-${version}/libhdate-${version}.tar.bz2";
|
|
|
|
sha256 = "3c930a8deb57c01896dc37f0d7804e5a330ee8e88c4ff610b71f9d2b02c17762";
|
|
|
|
};
|
|
|
|
meta = {
|
|
|
|
description = "Hebrew calendar and solar astronomical times library and utilities";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://sourceforge.net/projects/libhdate/";
|
2021-01-15 05:42:41 +00:00
|
|
|
license = lib.licenses.gpl3;
|
|
|
|
maintainers = with lib.maintainers; [ CharlesHD ];
|
2018-08-20 10:16:21 +01:00
|
|
|
};
|
|
|
|
}
|