summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/faraday/async.nix
blob: 666eb684925ce991106a8047e08d5a9c846d8d01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ buildDunePackage, faraday, core, async }:

buildDunePackage rec {
  pname = "faraday-async";
  inherit (faraday) version src useDune2;

  minimumOCamlVersion = "4.08";

  propagatedBuildInputs = [ faraday core async ];

  meta = faraday.meta // {
    description = "Async support for Faraday";
  };
}