Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 17.09 26 lines 920 B view raw
1{stdenv, buildOcaml, fetchurl, async_kernel_p4, async_unix_p4, 2 bin_prot_p4, core_p4, custom_printf, fieldslib_p4, herelib, pa_ounit, 3 pipebang, pa_test, sexplib_p4}: 4 5buildOcaml rec { 6 name = "async_extra"; 7 version = "112.24.00"; 8 9 minimumSupportedOcamlVersion = "4.02"; 10 11 src = fetchurl { 12 url = "https://github.com/janestreet/async_extra/archive/${version}.tar.gz"; 13 sha256 = "51f6f67a9ad56fe5dcf09faeeca6ec2fea53a7a975a72bc80504b90841212e28"; 14 }; 15 16 buildInputs = [ pa_test pa_ounit ]; 17 propagatedBuildInputs = [ async_kernel_p4 async_unix_p4 core_p4 bin_prot_p4 custom_printf 18 fieldslib_p4 herelib pipebang sexplib_p4 ]; 19 20 meta = with stdenv.lib; { 21 homepage = https://github.com/janestreet/async_extra; 22 description = "Jane Street Capital's asynchronous execution library (extra)"; 23 license = licenses.asl20; 24 maintainers = [ maintainers.ericbmerritt ]; 25 }; 26}