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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
368 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
alcotest,
graphql,
ocaml_lwt,
}:
buildDunePackage {
pname = "graphql-lwt";
inherit (graphql) version src;
duneVersion = "3";
propagatedBuildInputs = [
graphql
ocaml_lwt
];
checkInputs = [ alcotest ];
doCheck = true;
meta = graphql.meta // {
description = "Build GraphQL schemas with Lwt support";
};
}