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

buildDunePackage rec {
  pname = "graphql-lwt";

  inherit (graphql) version src;

  propagatedBuildInputs = [ graphql ocaml_lwt ];

  checkInputs = lib.optional doCheck alcotest;

  doCheck = true;

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

}