nixpkgs/pkgs/development/ocaml-modules/graphql/cohttp.nix
2023-02-03 08:59:34 +01:00

35 lines
565 B
Nix

{ lib
, buildDunePackage
, ocaml-crunch
, astring
, cohttp
, digestif
, graphql
, ocplib-endian
, alcotest
, cohttp-lwt-unix
, graphql-lwt
}:
buildDunePackage rec {
pname = "graphql-cohttp";
inherit (graphql) version src;
duneVersion = "3";
nativeBuildInputs = [ ocaml-crunch ];
propagatedBuildInputs = [ astring cohttp digestif graphql ocplib-endian ];
checkInputs = lib.optionals doCheck [ alcotest cohttp-lwt-unix graphql-lwt ];
doCheck = true;
meta = graphql.meta // {
description = "Run GraphQL servers with cohttp";
};
}