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

buildDunePackage rec {
  pname = "graphql-lwt";

  inherit (graphql) version src;

  duneVersion = "3";

  propagatedBuildInputs = [ graphql ocaml_lwt ];

  checkInputs = [ alcotest ];

  doCheck = true;

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

}