2020-12-05 16:27:35 +00:00
|
|
|
{ buildDunePackage, alcotest, graphql, ocaml_lwt }:
|
2019-12-06 06:19:00 +00:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "graphql-lwt";
|
|
|
|
|
2020-12-05 16:27:35 +00:00
|
|
|
inherit (graphql) version useDune2 src;
|
2019-12-06 06:19:00 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ graphql ocaml_lwt ];
|
|
|
|
|
2020-12-05 16:27:35 +00:00
|
|
|
checkInputs = [ alcotest ];
|
2019-12-06 06:19:00 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = graphql.meta // {
|
|
|
|
description = "Build GraphQL schemas with Lwt support";
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|