mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
41 lines
1.3 KiB
Nix
41 lines
1.3 KiB
Nix
{ stdenv, fetchurl, buildOcaml, ocaml, findlib, ocamlbuild, topkg, result, js_of_ocaml }:
|
|
|
|
buildOcaml rec {
|
|
version = "0.8.3";
|
|
name = "ptime";
|
|
|
|
src = fetchurl {
|
|
url = "http://erratique.ch/software/ptime/releases/ptime-${version}.tbz";
|
|
sha256 = "18jimskgnd9izg7kn6zk6sk35adgjm605dkv13plwslbb90kqr44";
|
|
};
|
|
|
|
unpackCmd = "tar -xf $curSrc";
|
|
|
|
buildInputs = [ ocaml findlib ocamlbuild topkg js_of_ocaml ];
|
|
|
|
propagatedBuildInputs = [ result ];
|
|
|
|
buildPhase = "${topkg.run} build --with-js_of_ocaml true";
|
|
|
|
inherit (topkg) installPhase;
|
|
|
|
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 ];
|
|
};
|
|
}
|