1 { stdenv, lib, fetchurl, buildDunePackage }:
9 minimumOCamlVersion = "4.02";
12 url = "https://github.com/flowtype/ocaml-${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
13 sha256 = "0zkhn0rdq82g6gamsv6nkx6i44s8104nh6jg5xydazl9jl1704xn";
16 hardeningDisable = lib.optional stdenv.cc.isClang "strictoverflow";
19 homepage = "https://github.com/flowtype/ocaml-dtoa";
20 description = "Converts OCaml floats into strings (doubles to ascii, \"d to a\"), using the efficient Grisu3 algorithm.";
21 license = licenses.mit;
22 maintainers = [ maintainers.eqyiel ];