depot/third_party/nixpkgs/pkgs/development/ocaml-modules/cstruct/async.nix

21 lines
260 B
Nix

{
buildDunePackage,
cstruct,
async_unix,
async,
core,
}:
buildDunePackage rec {
pname = "cstruct-async";
inherit (cstruct) src version meta;
duneVersion = "3";
propagatedBuildInputs = [
async_unix
async
cstruct
core
];
}