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.

20 lines
341 B
Nix
Raw Normal View History

2020-12-05 17:27:35 +01:00
{ buildDunePackage, alcotest, graphql, ocaml_lwt }:
buildDunePackage rec {
pname = "graphql-lwt";
2020-12-05 17:27:35 +01:00
inherit (graphql) version useDune2 src;
propagatedBuildInputs = [ graphql ocaml_lwt ];
2020-12-05 17:27:35 +01:00
checkInputs = [ alcotest ];
doCheck = true;
meta = graphql.meta // {
description = "Build GraphQL schemas with Lwt support";
};
}