Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildDunePackage, 3 cstruct, 4 async_unix, 5 async, 6 core, 7}: 8 9buildDunePackage { 10 pname = "cstruct-async"; 11 inherit (cstruct) src version meta; 12 13 duneVersion = "3"; 14 15 propagatedBuildInputs = [ 16 async_unix 17 async 18 cstruct 19 core 20 ]; 21}