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