nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 buildDunePackage,
3 gitlab,
4 cohttp,
5 cohttp-lwt-jsoo,
6 js_of_ocaml-lwt,
7}:
8
9buildDunePackage {
10 pname = "gitlab-jsoo";
11 inherit (gitlab) version src;
12
13 minimalOCamlVersion = "4.08";
14
15 propagatedBuildInputs = [
16 gitlab
17 cohttp
18 cohttp-lwt-jsoo
19 js_of_ocaml-lwt
20 ];
21
22 doCheck = true;
23
24 meta = gitlab.meta // {
25 description = "Gitlab APIv4 JavaScript library";
26 };
27}