depot/third_party/nixpkgs/pkgs/development/ocaml-modules/faraday/async.nix
Default email 92b3d6365d Project import generated by Copybara.
GitOrigin-RevId: 412b9917cea092f3d39f9cd5dead4effd5bc4053
2022-10-30 16:09:59 +01:00

14 lines
309 B
Nix

{ buildDunePackage, lib, faraday, core_unix, async }:
buildDunePackage rec {
pname = "faraday-async";
inherit (faraday) version src;
minimalOCamlVersion = "4.08";
propagatedBuildInputs = [ faraday core_unix async ];
meta = faraday.meta // {
description = "Async support for Faraday";
};
}