nixpkgs/pkgs/development/ocaml-modules/faraday/lwt.nix
2022-10-27 15:50:41 +02:00

13 lines
242 B
Nix

{ buildDunePackage, faraday, lwt }:
buildDunePackage rec {
pname = "faraday-lwt";
inherit (faraday) version src;
propagatedBuildInputs = [ faraday lwt ];
meta = faraday.meta // {
description = "Lwt support for Faraday";
};
}