about summary refs log tree commit diff
path: root/pkgs/applications/misc/hdate
diff options
context:
space:
mode:
authorCharlesHD <charleshdespointes@gmail.com>2018-08-20 11:16:21 +0200
committerCharlesHD <charleshdespointes@gmail.com>2018-08-20 11:16:21 +0200
commit0e159e042e7236de364724e53071e327614b8aec (patch)
tree053972209a9a95405c189625831655f5021fda16 /pkgs/applications/misc/hdate
parent8204f10a8ae316a4133d552ddf9ed0b31729b80a (diff)
downloadnixlib-0e159e042e7236de364724e53071e327614b8aec.tar
nixlib-0e159e042e7236de364724e53071e327614b8aec.tar.gz
nixlib-0e159e042e7236de364724e53071e327614b8aec.tar.bz2
nixlib-0e159e042e7236de364724e53071e327614b8aec.tar.lz
nixlib-0e159e042e7236de364724e53071e327614b8aec.tar.xz
nixlib-0e159e042e7236de364724e53071e327614b8aec.tar.zst
nixlib-0e159e042e7236de364724e53071e327614b8aec.zip
hdate: init at version 1.6.02
Diffstat (limited to 'pkgs/applications/misc/hdate')
-rw-r--r--pkgs/applications/misc/hdate/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/applications/misc/hdate/default.nix b/pkgs/applications/misc/hdate/default.nix
new file mode 100644
index 000000000000..e2f5f653d47c
--- /dev/null
+++ b/pkgs/applications/misc/hdate/default.nix
@@ -0,0 +1,16 @@
+{ 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 ];
+  };
+}