0fe1cd7bea
GitOrigin-RevId: c6c4a3d45ab200f17805d2d86a1ff1cc7ca2b186
20 lines
280 B
Nix
20 lines
280 B
Nix
{ buildDunePackage
|
|
, resto
|
|
, resto-directory
|
|
, resto-cohttp
|
|
, uri
|
|
, lwt
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "resto-cohttp-client";
|
|
inherit (resto) src version meta useDune2 doCheck;
|
|
|
|
propagatedBuildInputs = [
|
|
resto
|
|
resto-directory
|
|
resto-cohttp
|
|
uri
|
|
lwt
|
|
];
|
|
}
|