about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/awa/lwt.nix
blob: 241df784ad59c1f529a6b064b6c8a00b55a95870 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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 = [ awa ];
  checkInputs = [ cstruct-unix ];

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