2015-09-02 07:14:59 +00:00
|
|
|
{stdenv, buildOcaml, fetchurl, bin-prot, comparelib, core, custom-printf,
|
|
|
|
fieldslib, pa-bench, pa-ounit, pipebang, pa-test, textutils, re2, sexplib}:
|
2015-05-24 18:36:25 +00:00
|
|
|
|
|
|
|
buildOcaml rec {
|
2015-09-02 07:14:59 +00:00
|
|
|
name = "core-extended";
|
2015-05-24 18:36:25 +00:00
|
|
|
version = "112.24.00";
|
|
|
|
|
|
|
|
minimumSupportedOcamlVersion = "4.02";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/janestreet/core_extended/archive/${version}.tar.gz";
|
|
|
|
sha256 = "f87b0661b6c2cfb545ec61d1cb2ab1b9c4967b6ac14e651de41d3a6fb7f0f1e3";
|
|
|
|
};
|
|
|
|
|
|
|
|
hasSharedObjects = true;
|
2015-09-02 07:14:59 +00:00
|
|
|
buildInputs = [ pa-bench pa-test pa-ounit ];
|
|
|
|
propagatedBuildInputs = [bin-prot comparelib core custom-printf fieldslib
|
2015-05-24 18:36:25 +00:00
|
|
|
pipebang textutils re2 sexplib ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/janestreet/core_extended;
|
|
|
|
description = "Jane Street Capital's standard library overlay";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.ericbmerritt ];
|
|
|
|
};
|
|
|
|
}
|