nixpkgs/pkgs/applications/misc/hdate/default.nix
2018-08-20 11:16:21 +02:00

17 lines
590 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
version = "1.6.02";
name = "hdate-${version}";
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 = stdenv.lib.licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [ CharlesHD ];
};
}