1{stdenv, buildOcaml, fetchurl, bin_prot, comparelib, core, custom_printf,
2 fieldslib, pa_bench, pa_ounit, pipebang, pa_test, textutils, re2, sexplib}:
3
4buildOcaml rec {
5 name = "core_extended";
6 version = "112.24.00";
7
8 minimumSupportedOcamlVersion = "4.02";
9
10 src = fetchurl {
11 url = "https://github.com/janestreet/core_extended/archive/${version}.tar.gz";
12 sha256 = "f87b0661b6c2cfb545ec61d1cb2ab1b9c4967b6ac14e651de41d3a6fb7f0f1e3";
13 };
14
15 hasSharedObjects = true;
16 buildInputs = [ pa_bench pa_test pa_ounit ];
17 propagatedBuildInputs = [bin_prot comparelib core custom_printf fieldslib
18 pipebang textutils re2 sexplib ];
19
20 meta = with stdenv.lib; {
21 homepage = https://github.com/janestreet/core_extended;
22 description = "Jane Street Capital's standard library overlay";
23 license = licenses.asl20;
24 maintainers = [ maintainers.ericbmerritt ];
25 };
26}