2016-09-14 21:08:02 +01:00
|
|
|
{stdenv, buildOcaml, fetchurl, async_kernel_p4, async_unix_p4,
|
2016-09-14 01:59:22 +01:00
|
|
|
bin_prot_p4, core_p4, custom_printf, fieldslib_p4, herelib, pa_ounit,
|
2016-09-14 01:21:56 +01:00
|
|
|
pipebang, pa_test, sexplib_p4}:
|
2015-05-24 19:21:00 +01:00
|
|
|
|
|
|
|
buildOcaml rec {
|
2015-09-06 20:15:10 +01:00
|
|
|
name = "async_extra";
|
2015-05-24 19:21:00 +01:00
|
|
|
version = "112.24.00";
|
|
|
|
|
|
|
|
minimumSupportedOcamlVersion = "4.02";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/janestreet/async_extra/archive/${version}.tar.gz";
|
|
|
|
sha256 = "51f6f67a9ad56fe5dcf09faeeca6ec2fea53a7a975a72bc80504b90841212e28";
|
|
|
|
};
|
|
|
|
|
2015-09-06 20:15:10 +01:00
|
|
|
buildInputs = [ pa_test pa_ounit ];
|
2016-09-14 21:08:02 +01:00
|
|
|
propagatedBuildInputs = [ async_kernel_p4 async_unix_p4 core_p4 bin_prot_p4 custom_printf
|
2016-09-14 01:21:56 +01:00
|
|
|
fieldslib_p4 herelib pipebang sexplib_p4 ];
|
2015-05-24 19:21:00 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/janestreet/async_extra;
|
|
|
|
description = "Jane Street Capital's asynchronous execution library (extra)";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.ericbmerritt ];
|
|
|
|
};
|
|
|
|
}
|