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

buildDunePackage {
  pname = "awa-lwt";

  inherit (awa) version src useDune2;

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

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