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.

25 lines
355 B
Nix
Raw Normal View History

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