summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/dtoa/default.nix
blob: 9b6e56266143665cfe39da377b1142662cf7ff04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, fetchurl, ocaml, findlib, jbuilder }:

assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.01";

stdenv.mkDerivation rec {
  pname = "dtoa";
  name = "ocaml-${pname}-${version}";
  version = "0.3.1";

  src = fetchurl {
    url = "https://github.com/flowtype/ocaml-${pname}/releases/download/v${version}/${pname}-${version}.tbz";
    sha256 = "0rzysj07z2q6gk0yhjxnjnba01vmdb9x32wwna10qk3rrb8r2pnn";
  };

  unpackCmd = "tar xjf $src";

  buildInputs = [ ocaml findlib jbuilder ];

  buildPhase = "jbuilder build -p dtoa";

  inherit (jbuilder) installPhase;

  hardeningDisable = stdenv.lib.optional stdenv.isDarwin "strictoverflow";

  meta = with stdenv.lib; {
    homepage = https://github.com/flowtype/ocaml-dtoa;
    description = "Converts OCaml floats into strings (doubles to ascii, \"d to a\"), using the efficient Grisu3 algorithm.";
    license = licenses.mit;
    platforms = ocaml.meta.platforms or [];
    maintainers = [ maintainers.eqyiel ];
  };
}