forked from mirrors/nixpkgs
21 lines
280 B
Nix
21 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
|
||
|
];
|
||
|
}
|