biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / graphql / cohttp.nix
blobb202d46abd533ad5105c3f81486cbe4186da817e
1 { lib
2 , buildDunePackage
3 , ocaml-crunch
4 , astring
5 , cohttp
6 , digestif
7 , graphql
8 , ocplib-endian
9 , alcotest
10 , cohttp-lwt-unix
11 , graphql-lwt
14 buildDunePackage rec {
15   pname = "graphql-cohttp";
17   inherit (graphql) version src;
19   duneVersion = "3";
21   nativeBuildInputs = [ ocaml-crunch ];
22   propagatedBuildInputs = [ astring cohttp digestif graphql ocplib-endian ];
24   checkInputs = lib.optionals doCheck [ alcotest cohttp-lwt-unix graphql-lwt ];
26   doCheck = true;
28   meta = graphql.meta // {
29     description = "Run GraphQL servers with “cohttp”";
30   };