nixpkgs/pkgs/development/ocaml-modules/resto/cohttp.nix
2023-01-12 17:56:25 +01:00

14 lines
250 B
Nix

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