21 lines
292 B
Nix
21 lines
292 B
Nix
{ buildDunePackage
|
|
, resto
|
|
, resto-directory
|
|
, resto-cohttp
|
|
, uri
|
|
, lwt
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "resto-cohttp-client";
|
|
inherit (resto) src version meta doCheck;
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [
|
|
resto
|
|
resto-directory
|
|
resto-cohttp
|
|
uri
|
|
lwt
|
|
];
|
|
}
|