2020-12-09 12:39:15 +00:00
|
|
|
{ buildDunePackage, alcotest, graphql, ocaml_lwt }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "graphql-lwt";
|
|
|
|
|
2022-08-21 13:32:41 +00:00
|
|
|
inherit (graphql) version src;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-01-20 10:41:00 +00:00
|
|
|
duneVersion = "3";
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
propagatedBuildInputs = [ graphql ocaml_lwt ];
|
|
|
|
|
2023-02-09 11:40:11 +00:00
|
|
|
checkInputs = [ alcotest ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = graphql.meta // {
|
|
|
|
description = "Build GraphQL schemas with Lwt support";
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|