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