nixpkgs/pkgs/development/ocaml-modules/ptime/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.3 KiB
Nix
Raw Normal View History

2022-11-19 06:21:55 +00:00
{ stdenv, lib, fetchurl, ocaml, findlib, ocamlbuild, topkg
}:
2016-11-02 13:35:40 +00:00
2022-11-19 06:21:55 +00:00
lib.throwIfNot (lib.versionAtLeast ocaml.version "4.08")
"ptime is not available for OCaml ${ocaml.version}"
2018-07-29 14:31:58 +01:00
stdenv.mkDerivation rec {
2022-11-19 06:21:55 +00:00
version = "1.0.0";
2022-02-06 22:35:27 +00:00
pname = "ocaml${ocaml.version}-ptime";
2016-11-02 13:35:40 +00:00
src = fetchurl {
url = "https://erratique.ch/software/ptime/releases/ptime-${version}.tbz";
2022-11-19 06:21:55 +00:00
sha256 = "sha256-RByDjAFiyDdR8G663/MxabuSHTTuwVn7urtw7Z3iEQs=";
2016-11-02 13:35:40 +00:00
};
nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
2022-11-19 06:21:55 +00:00
buildInputs = [ topkg ];
strictDeps = true;
2016-11-02 13:35:40 +00:00
2022-11-19 06:21:55 +00:00
inherit (topkg) buildPhase installPhase;
2016-11-02 13:35:40 +00:00
meta = {
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.
'';
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ sternenseemann ];
2016-11-02 13:35:40 +00:00
};
}