summaryrefslogtreecommitdiff
path: root/pkgs/development/ocaml-modules/cstruct/async.nix
blob: 67c6b07419f32d26f1553a26763745bc9f3c5d9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  buildDunePackage,
  cstruct,
  async_unix,
  async,
  core,
}:

buildDunePackage {
  pname = "cstruct-async";
  inherit (cstruct) src version meta;

  duneVersion = "3";

  propagatedBuildInputs = [
    async_unix
    async
    cstruct
    core
  ];
}