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