13da32182d
GitOrigin-RevId: a7855f2235a1876f97473a76151fec2afa02b287
19 lines
332 B
Nix
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";
|
|
};
|
|
|
|
}
|
|
|