about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/graphql/default.nix
blob: f3adfdc87a9de71171d97706b57ec9108f2c564a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ buildDunePackage, alcotest, graphql_parser, rresult, yojson }:

buildDunePackage rec {
  pname = "graphql";

  inherit (graphql_parser) version useDune2 src;

  propagatedBuildInputs = [ graphql_parser rresult yojson ];

  checkInputs = [ alcotest ];

  doCheck = true;

  meta = graphql_parser.meta // {
    description = "Build GraphQL schemas and execute queries against them";
  };

}