2021-12-08 22:00:13 +00:00
|
|
|
{ stdenv, lib, fetchurl, ocaml, findlib, ocamlbuild, topkg, js_of_ocaml
|
2020-12-20 18:32:00 +00:00
|
|
|
, jsooSupport ? true
|
|
|
|
}:
|
2016-11-02 13:35:40 +00:00
|
|
|
|
2018-07-29 13:31:58 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-12-08 22:00:13 +00:00
|
|
|
version = "0.8.6";
|
2022-02-06 22:35:27 +00:00
|
|
|
pname = "ocaml${ocaml.version}-ptime";
|
2016-11-02 13:35:40 +00:00
|
|
|
|
2021-12-08 22:00:13 +00:00
|
|
|
minimalOCamlVersion = "4.03";
|
|
|
|
|
2016-11-02 13:35:40 +00:00
|
|
|
src = fetchurl {
|
2019-04-22 08:14:28 +00:00
|
|
|
url = "https://erratique.ch/software/ptime/releases/ptime-${version}.tbz";
|
2021-12-08 22:00:13 +00:00
|
|
|
sha256 = "sha256-gy/fUsfUHUZx1A/2sQMQIFMHl1V+QO3zHAsEnZT/lkI=";
|
2016-11-02 13:35:40 +00:00
|
|
|
};
|
|
|
|
|
2022-02-22 09:59:04 +00:00
|
|
|
nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
|
|
|
|
buildInputs = [ topkg ] ++ lib.optional jsooSupport js_of_ocaml;
|
|
|
|
|
|
|
|
strictDeps = true;
|
2016-11-02 13:35:40 +00:00
|
|
|
|
2020-12-20 18:32:00 +00:00
|
|
|
buildPhase = "${topkg.run} build --with-js_of_ocaml ${lib.boolToString jsooSupport}";
|
2016-11-02 13:35:40 +00:00
|
|
|
|
2017-06-28 17:39:15 +00:00
|
|
|
inherit (topkg) installPhase;
|
2016-11-02 13:35:40 +00:00
|
|
|
|
|
|
|
meta = {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://erratique.ch/software/ptime";
|
2016-11-02 13:35:40 +00: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 12:49:15 +00:00
|
|
|
license = lib.licenses.isc;
|
|
|
|
maintainers = with lib.maintainers; [ sternenseemann ];
|
2016-11-02 13:35:40 +00:00
|
|
|
};
|
|
|
|
}
|