Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildDunePackage, 3 alcotest, 4 graphql, 5 ocaml_lwt, 6}: 7 8buildDunePackage { 9 pname = "graphql-lwt"; 10 11 inherit (graphql) version src; 12 13 duneVersion = "3"; 14 15 propagatedBuildInputs = [ 16 graphql 17 ocaml_lwt 18 ]; 19 20 checkInputs = [ alcotest ]; 21 22 doCheck = true; 23 24 meta = graphql.meta // { 25 description = "Build GraphQL schemas with Lwt support"; 26 }; 27 28}