ocamlPackages.graphql-lwt: init at 0.13.0
This commit is contained in:
parent
187c657eab
commit
9b834a210e
19
pkgs/development/ocaml-modules/graphql/lwt.nix
Normal file
19
pkgs/development/ocaml-modules/graphql/lwt.nix
Normal 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";
|
||||
};
|
||||
|
||||
}
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user