mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
17 lines
544 B
Nix
17 lines
544 B
Nix
{stdenv, buildOcamlJane, core_kernel,
|
|
bin_prot, fieldslib,
|
|
sexplib, herelib}:
|
|
|
|
buildOcamlJane rec {
|
|
name = "async_kernel";
|
|
hash = "1n6ifbrq6q6hq8bxh6b9vhg11mv9r6jgp1b7vfw7mh5s2nrd4b60";
|
|
propagatedBuildInputs = [ core_kernel bin_prot fieldslib herelib sexplib ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/janestreet/async_kernel;
|
|
description = "Jane Street Capital's asynchronous execution library (core) ";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.maurer maintainers.ericbmerritt ];
|
|
};
|
|
}
|