Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 23 lines 315 B view raw
1{ 2 buildDunePackage, 3 h2, 4 h2-lwt, 5 gluten-lwt-unix, 6 faraday-lwt-unix, 7}: 8 9buildDunePackage { 10 pname = "h2-lwt-unix"; 11 12 inherit (h2) src version; 13 14 propagatedBuildInputs = [ 15 gluten-lwt-unix 16 faraday-lwt-unix 17 h2-lwt 18 ]; 19 20 meta = h2.meta // { 21 description = "Lwt Unix support for h2"; 22 }; 23}