nixpkgs/pkgs/development/ocaml-modules/faraday/async.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
309 B
Nix
Raw Normal View History

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