nixpkgs/pkgs/development/ocaml-modules/resto/cohttp-client.nix
2022-05-31 13:32:40 +02:00

21 lines
271 B
Nix

{ buildDunePackage
, resto
, resto-directory
, resto-cohttp
, uri
, lwt
}:
buildDunePackage {
pname = "resto-cohttp-client";
inherit (resto) src version meta doCheck;
propagatedBuildInputs = [
resto
resto-directory
resto-cohttp
uri
lwt
];
}