1{ lib, buildDunePackage, cstruct, async_unix, async, core }: 2 3buildDunePackage rec { 4 pname = "cstruct-async"; 5 inherit (cstruct) src version meta; 6 7 duneVersion = "3"; 8 9 propagatedBuildInputs = [ 10 async_unix 11 async 12 cstruct 13 core 14 ]; 15}