Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildDunePackage
2, resto
3, resto-directory
4, resto-cohttp
5, uri
6, lwt
7}:
8
9buildDunePackage {
10 pname = "resto-cohttp-client";
11 inherit (resto) src version meta doCheck;
12 duneVersion = "3";
13
14 propagatedBuildInputs = [
15 resto
16 resto-directory
17 resto-cohttp
18 uri
19 lwt
20 ];
21}