nixpkgs/pkgs/development/ocaml-modules/graphql/lwt.nix

20 lines
341 B
Nix
Raw Normal View History

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