10 buildDunePackage rec {
15 url = "https://github.com/flowtype/ocaml-${pname}/releases/download/v${version}/${pname}-${version}.tbz";
16 hash = "sha256-2PRgjJ6Ssp4l6jHzv1/MqzlomQlJkKLVnRXG6KPJ7j4=";
19 checkInputs = [ ounit2 ];
21 doCheck = lib.versionAtLeast ocaml.version "4.08";
23 hardeningDisable = lib.optional stdenv.cc.isClang "strictoverflow";
26 homepage = "https://github.com/flowtype/ocaml-dtoa";
27 description = "Converts OCaml floats into strings (doubles to ascii, \"d to a\"), using the efficient Grisu3 algorithm";
28 license = licenses.mit;
29 maintainers = [ maintainers.eqyiel ];