depot/third_party/nixpkgs/pkgs/development/ocaml-modules/graphql/lwt.nix
Default email 13da32182d Project import generated by Copybara.
GitOrigin-RevId: a7855f2235a1876f97473a76151fec2afa02b287
2022-08-21 15:32:41 +02:00

19 lines
332 B
Nix

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