summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/gitlab/jsoo.nix
blob: c6bcfb6ae39e46d879d2b5586ac31fb68d85836c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  buildDunePackage,
  gitlab,
  cohttp,
  cohttp-lwt-jsoo,
  js_of_ocaml-lwt,
}:

buildDunePackage {
  pname = "gitlab-jsoo";
  inherit (gitlab) version src;

  minimalOCamlVersion = "4.08";

  propagatedBuildInputs = [
    gitlab
    cohttp
    cohttp-lwt-jsoo
    js_of_ocaml-lwt
  ];

  doCheck = true;

  meta = gitlab.meta // {
    description = "Gitlab APIv4 JavaScript library";
  };
}