2022-11-27 09:42:12 +00:00
|
|
|
{ stdenv, lib, fetchurl, ocaml, findlib, ocamlbuild, topkg
|
2021-02-05 17:12:51 +00:00
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-11-27 09:42:12 +00:00
|
|
|
lib.throwIfNot (lib.versionAtLeast ocaml.version "4.08")
|
|
|
|
"ptime is not available for OCaml ${ocaml.version}"
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2022-11-27 09:42:12 +00:00
|
|
|
version = "1.0.0";
|
2022-02-10 20:34:41 +00:00
|
|
|
pname = "ocaml${ocaml.version}-ptime";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://erratique.ch/software/ptime/releases/ptime-${version}.tbz";
|
2022-11-27 09:42:12 +00:00
|
|
|
sha256 = "sha256-RByDjAFiyDdR8G663/MxabuSHTTuwVn7urtw7Z3iEQs=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-03-05 16:20:37 +00:00
|
|
|
nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
|
2022-11-27 09:42:12 +00:00
|
|
|
buildInputs = [ topkg ];
|
2022-03-05 16:20:37 +00:00
|
|
|
|
|
|
|
strictDeps = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-11-27 09:42:12 +00:00
|
|
|
inherit (topkg) buildPhase installPhase;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "https://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.
|
|
|
|
'';
|
2021-01-15 22:18:51 +00:00
|
|
|
license = lib.licenses.isc;
|
|
|
|
maintainers = with lib.maintainers; [ sternenseemann ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|