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