about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/gitlab/jsoo.nix
blob: 60929f60b3b20413cb8130830a2e78d24bd4cc56 (plain) (blame)
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
28
{
  lib,
  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";
  };
}