summary refs log blame commit diff
path: root/pkgs/development/ocaml-modules/cstruct/async.nix
blob: 579f12776c086b81707a4f63f7dc246a4f15fd6d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                               
{ lib, buildDunePackage, cstruct, async_unix }:

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

  propagatedBuildInputs = [
    async_unix
    cstruct
  ];
}