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