2021-01-11 13:49:15 +01:00
|
|
|
{ stdenv, lib, fetchurl, ocaml, findlib, ocamlbuild, topkg, result, js_of_ocaml }:
|
2016-11-02 14:35:40 +01:00
|
|
|
|
2018-07-29 15:31:58 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-05-22 09:56:35 +02:00
|
|
|
version = "0.8.5";
|
2018-07-29 15:31:58 +02:00
|
|
|
name = "ocaml${ocaml.version}-ptime-${version}";
|
2016-11-02 14:35:40 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-22 10:14:28 +02:00
|
|
|
url = "https://erratique.ch/software/ptime/releases/ptime-${version}.tbz";
|
2019-05-22 09:56:35 +02:00
|
|
|
sha256 = "1fxq57xy1ajzfdnvv5zfm7ap2nf49znw5f9gbi4kb9vds942ij27";
|
2016-11-02 14:35:40 +01:00
|
|
|
};
|
|
|
|
|
2019-10-31 11:16:15 +01:00
|
|
|
nativeBuildInputs = [ ocaml findlib ocamlbuild ];
|
|
|
|
buildInputs = [ findlib topkg js_of_ocaml ];
|
2016-11-02 14:35:40 +01:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ result ];
|
|
|
|
|
2017-12-14 08:36:29 +01:00
|
|
|
buildPhase = "${topkg.run} build --with-js_of_ocaml true";
|
2016-11-02 14:35:40 +01:00
|
|
|
|
2017-06-28 19:39:15 +02:00
|
|
|
inherit (topkg) installPhase;
|
2016-11-02 14:35:40 +01:00
|
|
|
|
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://erratique.ch/software/ptime";
|
2016-11-02 14:35:40 +01:00
|
|
|
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.
|
|
|
|
'';
|
2021-01-11 13:49:15 +01:00
|
|
|
license = lib.licenses.isc;
|
|
|
|
maintainers = with lib.maintainers; [ sternenseemann ];
|
2016-11-02 14:35:40 +01:00
|
|
|
};
|
|
|
|
}
|