about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/mirage-time
diff options
context:
space:
mode:
authorsternenseemann <git@lukasepple.de>2020-04-23 18:23:25 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2020-04-25 14:50:57 +0200
commitb5f9eb06b5a2e6513944283ecef97be1d4c92509 (patch)
tree8b8a5a03c066559a0cda9556307dadf52f72a1fb /pkgs/development/ocaml-modules/mirage-time
parentbc675971dae581ec653fa6ce0b238729ccb7aa80 (diff)
downloadnixlib-b5f9eb06b5a2e6513944283ecef97be1d4c92509.tar
nixlib-b5f9eb06b5a2e6513944283ecef97be1d4c92509.tar.gz
nixlib-b5f9eb06b5a2e6513944283ecef97be1d4c92509.tar.bz2
nixlib-b5f9eb06b5a2e6513944283ecef97be1d4c92509.tar.lz
nixlib-b5f9eb06b5a2e6513944283ecef97be1d4c92509.tar.xz
nixlib-b5f9eb06b5a2e6513944283ecef97be1d4c92509.tar.zst
nixlib-b5f9eb06b5a2e6513944283ecef97be1d4c92509.zip
ocamlPackages.mirage-time(-unix): init at 2.0.1
Diffstat (limited to 'pkgs/development/ocaml-modules/mirage-time')
-rw-r--r--pkgs/development/ocaml-modules/mirage-time/default.nix22
-rw-r--r--pkgs/development/ocaml-modules/mirage-time/unix.nix13
2 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/mirage-time/default.nix b/pkgs/development/ocaml-modules/mirage-time/default.nix
new file mode 100644
index 000000000000..b98fd3b6279c
--- /dev/null
+++ b/pkgs/development/ocaml-modules/mirage-time/default.nix
@@ -0,0 +1,22 @@
+{ lib, buildDunePackage, fetchurl, ocaml_lwt }:
+
+buildDunePackage rec {
+  minimumOCamlVersion = "4.06";
+
+  pname = "mirage-time";
+  version = "2.0.1";
+
+  src = fetchurl {
+    url = "https://github.com/mirage/mirage-time/releases/download/v${version}/mirage-time-v${version}.tbz";
+    sha256 = "1w6mm4g7fc19cs0ncs0s9fsnb1k1s04qqzs9bsqvq8ngsb90cbh0";
+  };
+
+  propagatedBuildInputs = [ ocaml_lwt ];
+
+  meta = with lib; {
+    homepage = "https://github.com/mirage/mirage-time";
+    description = "Time operations for MirageOS";
+    license = licenses.isc;
+    maintainers = with maintainers; [ sternenseemann ];
+  };
+}
diff --git a/pkgs/development/ocaml-modules/mirage-time/unix.nix b/pkgs/development/ocaml-modules/mirage-time/unix.nix
new file mode 100644
index 000000000000..da5326bc0751
--- /dev/null
+++ b/pkgs/development/ocaml-modules/mirage-time/unix.nix
@@ -0,0 +1,13 @@
+{ buildDunePackage, fetchurl, mirage-time, ocaml_lwt, duration }:
+
+buildDunePackage {
+  pname = "mirage-time-unix";
+
+  inherit (mirage-time) src version minimumOCamlVersion;
+
+  propagatedBuildInputs = [ mirage-time ocaml_lwt duration ];
+
+  meta = mirage-time.meta // {
+    description = "Time operations for MirageOS on Unix";
+  };
+}