f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
27 lines
395 B
Nix
27 lines
395 B
Nix
{
|
|
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";
|
|
};
|
|
}
|