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

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

  propagatedBuildInputs = [
    async_unix
    async
    cstruct
    core
  ];
}