nixpkgs/pkgs/development/ocaml-modules/graphql/lwt.nix
Vincent Laporte 7ed0a6f85f ocamlPackages.graphql: 0.13.0 → 0.14.0
ocamlPackages.irmin-graphql: mark as broken
2022-08-17 12:13:04 +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";
};
}