ocamlPackages.graphql-lwt: init at 0.13.0

This commit is contained in:
Vincent Laporte 2019-12-06 06:19:00 +00:00 committed by Vincent Laporte
parent 187c657eab
commit 9b834a210e
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ lib, buildDunePackage, alcotest, graphql, ocaml_lwt }:
buildDunePackage rec {
pname = "graphql-lwt";
inherit (graphql) version src;
propagatedBuildInputs = [ graphql ocaml_lwt ];
checkInputs = lib.optional doCheck alcotest;
doCheck = true;
meta = graphql.meta // {
description = "Build GraphQL schemas with Lwt support";
};
}

View file

@ -350,6 +350,8 @@ let
graphql = callPackage ../development/ocaml-modules/graphql { };
graphql-lwt = callPackage ../development/ocaml-modules/graphql/lwt.nix { };
graphql_parser = callPackage ../development/ocaml-modules/graphql/parser.nix { };
gtktop = callPackage ../development/ocaml-modules/gtktop { };