4bac34ead1
GitOrigin-RevId: 724bfc0892363087709bd3a5a1666296759154b1
28 lines
773 B
Nix
28 lines
773 B
Nix
{ stdenv, lib, fetchurl, buildDunePackage, ounit }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "dtoa";
|
|
version = "0.3.2";
|
|
|
|
useDune2 = true;
|
|
|
|
minimumOCamlVersion = "4.02";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/flowtype/ocaml-${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
|
|
sha256 = "0zkhn0rdq82g6gamsv6nkx6i44s8104nh6jg5xydazl9jl1704xn";
|
|
};
|
|
|
|
checkInputs = [ ounit ];
|
|
|
|
doCheck = true;
|
|
|
|
hardeningDisable = lib.optional stdenv.cc.isClang "strictoverflow";
|
|
|
|
meta = with 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;
|
|
maintainers = [ maintainers.eqyiel ];
|
|
};
|
|
}
|