summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/graphql/lwt.nix
blob: cc458db986faf5b2de88cf803ae76c311f1f5d0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  buildDunePackage,
  alcotest,
  graphql,
  lwt,
}:

buildDunePackage {
  pname = "graphql-lwt";

  inherit (graphql) version src;

  propagatedBuildInputs = [
    graphql
    lwt
  ];

  checkInputs = [ alcotest ];

  doCheck = true;

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

}