about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/hdate/default.nix
blob: 899630b690990965064a9b03db1ee42c4f9b4216 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib, stdenv, fetchurl }:

stdenv.mkDerivation rec {
  version = "1.6.02";
  pname = "hdate";
  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";
    homepage = "https://sourceforge.net/projects/libhdate/";
    license = lib.licenses.gpl3;
    maintainers = with lib.maintainers; [ CharlesHD ];
  };
}