about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/awa/lwt.nix
blob: b155c1b6698c96c24f4f897390a7037cc65021ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ buildDunePackage, awa
, cstruct, mtime, lwt, cstruct-unix, mirage-crypto-rng
}:

buildDunePackage {
  pname = "awa-lwt";

  inherit (awa) version src;

  duneVersion = "3";

  propagatedBuildInputs = [
    awa cstruct mtime lwt mirage-crypto-rng
  ];

  doCheck = true;
  nativeCheckInputs = [ cstruct-unix ];

  meta = awa.meta // { mainProgram = "awa_lwt_server"; };
}