biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / irmin / graphql.nix
blob1b5ecb51396fbe22a6936b726b662d7caf3d5002
1 { lib, buildDunePackage, cohttp-lwt, cohttp-lwt-unix, graphql-cohttp, graphql-lwt, irmin, git-unix
2 , alcotest, alcotest-lwt, logs, yojson, cacert
3 }:
5 buildDunePackage rec {
7   pname = "irmin-graphql";
9   inherit (irmin) version src;
11   propagatedBuildInputs = [ cohttp-lwt cohttp-lwt-unix graphql-cohttp graphql-lwt irmin git-unix ];
13   doCheck = true;
15   checkInputs = [
16     alcotest
17     alcotest-lwt
18     logs
19     yojson
20     cacert
21   ];
23   meta = irmin.meta // {
24     description = "GraphQL server for Irmin";
25   };