about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/janestreet/async_ssl.nix
blob: 631562159762313359e545f6106042d77aec93b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ stdenv, buildOcamlJane, async, comparelib, core, ctypes
, openssl, fieldslib, herelib, pipebang, sexplib, ocaml_oasis
}:

buildOcamlJane rec {
  name = "async_ssl";
  version = "113.33.07";
  hash = "0bhzpnmlx6dy4fli3i7ipjwqbsdi7fq171jrila5dr3ciy3841xs";
  propagatedBuildInputs = [ ctypes async comparelib core fieldslib
                            herelib pipebang sexplib openssl ocaml_oasis ];
  meta = with stdenv.lib; {
    homepage = https://github.com/janestreet/async_ssl;
    description = "Async wrappers for ssl";
    license = licenses.asl20;
    maintainers = [ maintainers.ericbmerritt ];
  };
}