Files
nixpkgs/pkgs/development/ocaml-modules/graphql/lwt.nix
T
2025-12-04 22:09:38 +01:00

27 lines
334 B
Nix

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