summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ptime/default.nix
blob: bb850019731146169bd85ed8a9e0b8b311f1e118 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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 ];
  };
}