summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/awa/lwt.nix
blob: 00be799ddff289556f7c596560da76459caecf36 (plain)
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
  ];

  inherit (awa) meta;
}