at 18.03-beta 23 lines 701 B view raw
1{stdenv, buildOcaml, fetchurl, async_kernel_p4, 2 async_unix_p4, async_extra_p4, pa_ounit}: 3 4buildOcaml rec { 5 name = "async"; 6 version = "112.24.00"; 7 8 minimumSupportedOcamlVersion = "4.02"; 9 10 src = fetchurl { 11 url = "https://github.com/janestreet/async/archive/${version}.tar.gz"; 12 sha256 = "ecc4ca939ab098e689332921b110dbaacd06d9f8d8bf697023dfff3ca37dc1e9"; 13 }; 14 15 propagatedBuildInputs = [ async_kernel_p4 async_unix_p4 async_extra_p4 pa_ounit ]; 16 17 meta = with stdenv.lib; { 18 homepage = https://github.com/janestreet/async; 19 description = "Jane Street Capital's asynchronous execution library"; 20 license = licenses.asl20; 21 maintainers = [ maintainers.ericbmerritt ]; 22 }; 23}