about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/conduit/async.nix
blob: e78cb2bc516543a959ca9e5d8e06ea60b4dd208f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, buildDunePackage, async, async_ssl, ppx_sexp_conv, ppx_here, uri, conduit }:

buildDunePackage {
  pname = "conduit-async";
  inherit (conduit)
    version
    src
    minimumOCamlVersion
    useDune2
    ;

  buildInputs = [ ppx_sexp_conv ppx_here ];

  propagatedBuildInputs = [ async async_ssl conduit uri ];

  meta = conduit.meta // {
    description = "A network connection establishment library for Async";
  };
}