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

buildDunePackage rec {
  pname = "graphql-lwt";

  inherit (graphql) version useDune2 src;

  propagatedBuildInputs = [ graphql ocaml_lwt ];

  checkInputs = [ alcotest ];

  doCheck = true;

  meta = graphql.meta // {
    description = "Build GraphQL schemas with Lwt support";
  };

}