Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 16.09 23 lines 683 B view raw
1{stdenv, buildOcaml, fetchurl, async_kernel, 2 async_unix, async_extra, 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 async_unix async_extra 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}