about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/cstruct/async.nix
blob: 1fe020f6490b67fd461cdddf0dd6281be857269c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, buildDunePackage, cstruct, async_unix, async, core }:

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

  duneVersion = "3";

  propagatedBuildInputs = [
    async_unix
    async
    cstruct
    core
  ];
}