summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorsternenseemann <git@lukasepple.de>2016-11-02 14:35:40 +0100
committersternenseemann <git@lukasepple.de>2016-11-03 14:08:18 +0100
commit0c8859fd17eb9a95b04449a599c62bab4b5d677d (patch)
tree174740edbdb8e1cc60de0e8d93c62908b72ca514 /pkgs
parentd9b5cd41c50c515d0f41b8a6292e7c49ab35aa61 (diff)
downloadnixlib-0c8859fd17eb9a95b04449a599c62bab4b5d677d.tar
nixlib-0c8859fd17eb9a95b04449a599c62bab4b5d677d.tar.gz
nixlib-0c8859fd17eb9a95b04449a599c62bab4b5d677d.tar.bz2
nixlib-0c8859fd17eb9a95b04449a599c62bab4b5d677d.tar.lz
nixlib-0c8859fd17eb9a95b04449a599c62bab4b5d677d.tar.xz
nixlib-0c8859fd17eb9a95b04449a599c62bab4b5d677d.tar.zst
nixlib-0c8859fd17eb9a95b04449a599c62bab4b5d677d.zip
ocaml-ptime: init at 0.8.2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/ocaml-modules/ptime/default.nix47
-rw-r--r--pkgs/top-level/ocaml-packages.nix2
2 files changed, 49 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/ptime/default.nix b/pkgs/development/ocaml-modules/ptime/default.nix
new file mode 100644
index 000000000000..bb8500197311
--- /dev/null
+++ b/pkgs/development/ocaml-modules/ptime/default.nix
@@ -0,0 +1,47 @@
+{stdenv, fetchurl, buildOcaml, ocaml, findlib, ocamlbuild, topkg, result, opam}:
+
+let ocaml-version = stdenv.lib.getVersion ocaml; in
+
+buildOcaml rec {
+  version = "0.8.2";
+  name = "ptime";
+
+  src = fetchurl {
+    url = "http://erratique.ch/software/ptime/releases/ptime-${version}.tbz";
+    sha256 = "1lihkhzskzwxskiarh4mvf7gbz5nfv25vmazbfz81m344i32a5pj";
+  };
+
+  unpackCmd = "tar -xf $curSrc";
+
+  buildInputs = [ ocaml findlib ocamlbuild topkg opam ];
+
+  propagatedBuildInputs = [ result ];
+
+  buildPhase = ''
+    ocaml -I ${findlib}/lib/ocaml/${ocaml-version}/site-lib/ pkg/pkg.ml build --with-js_of_ocaml false
+  '';
+
+  installPhase = ''
+    opam-installer --script --prefix=$out ptime.install | sh
+    ln -s $out/lib/ptime $out/lib/ocaml/${ocaml.version}/site-lib
+  '';
+
+  meta = {
+    homepage = http://erratique.ch/software/ptime;
+    description = "POSIX time for OCaml.";
+    longDescription = ''
+      Ptime has platform independent POSIX time support in pure OCaml.
+      It provides a type to represent a well-defined range of POSIX timestamps
+      with picosecond precision, conversion with date-time values, conversion
+      with RFC 3339 timestamps and pretty printing to a human-readable,
+      locale-independent representation.
+
+      The additional Ptime_clock library provides access to a system POSIX clock
+      and to the system's current time zone offset.
+
+      Ptime is not a calendar library.
+    '';
+    license = stdenv.lib.licenses.isc;
+    maintainers = with stdenv.lib.maintainers; [ sternenseemann ];
+  };
+}
diff --git a/pkgs/top-level/ocaml-packages.nix b/pkgs/top-level/ocaml-packages.nix
index 58e9512e31c6..c4381ea484be 100644
--- a/pkgs/top-level/ocaml-packages.nix
+++ b/pkgs/top-level/ocaml-packages.nix
@@ -340,6 +340,8 @@ let
     piqi = callPackage ../development/ocaml-modules/piqi { };
     piqi-ocaml = callPackage ../development/ocaml-modules/piqi-ocaml { };
 
+    ptime = callPackage ../development/ocaml-modules/ptime { };
+
     re2_p4 = callPackage ../development/ocaml-modules/re2 { };
 
     result = callPackage ../development/ocaml-modules/ocaml-result { };