this repo has no description
1opam-version: "2.0"
2synopsis: "GitLab APIv4 OCaml library"
3description: """
4This library provides an OCaml interface to the
5[Gitlab APIv4](https://docs.gitlab.com/ee/api/) (JSON).
6This package installs the Unix (Lwt) version."""
7maintainer: ["Tim McGilchrist <timmcgil@gmail.com>"]
8authors: ["Tim McGilchrist"]
9license: "BSD-3-clause"
10homepage: "https://github.com/tmcgilchrist/ocaml-gitlab"
11doc: "https://tmcgilchrist.github.io/ocaml-gitlab/"
12bug-reports: "https://github.com/tmcgilchrist/ocaml-gitlab/issues"
13depends: [
14 "ocaml" {>= "4.08.0"}
15 "dune" {>= "2.9" & >= "1.10"}
16 "gitlab" {= version}
17 "cohttp" {>= "4.0"}
18 "cohttp-lwt-unix" {>= "4.0"}
19 "tls" {>= "0.11.0" & < "1.0.0"}
20 "lwt" {>= "2.4.4"}
21 "stringext"
22 "base-unix"
23 "alcotest" {with-test}
24 "alcotest-lwt" {with-test}
25 "mdx" {with-test}
26 "odoc" {with-doc}
27]
28patches: [
29 "no-diff-installed.patch"
30]
31build: [
32 ["dune" "subst"] {dev}
33 [
34 "dune"
35 "build"
36 "-p"
37 name
38 "-j"
39 jobs
40 "--promote-install-files=false"
41 "@install"
42 "@doc" {with-doc}
43 ]
44 ["dune" "install" "-p" name "--create-install-files" name]
45]
46dev-repo: "git+https://github.com/tmcgilchrist/ocaml-gitlab.git"
47url {
48 src:
49 "https://github.com/tmcgilchrist/ocaml-gitlab/releases/download/0.1.0/lab-0.1.0.tbz"
50 checksum: [
51 "sha256=fb8efa6f650fcfed8b0e16054f53d6cec624bf218e76e4e5264e16c1d4a37f8d"
52 "sha512=341bd366a6c664067a043a2e75f9f6db479a43ae8f4e6448a5ba80b6e9269a40b95b307e4de538c60d2cfabc82c964113da789f04d22b2e13456234344e75089"
53 ]
54}
55x-commit-hash: "9dc71f428bf49f3029742cfc5e5450697fbc48ff"
56extra-source "no-diff-installed.patch" {
57 src:
58 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/gitlab-unix/no-diff-installed.patch"
59 checksum: [
60 "sha256=3da56c3be4ef93d9ee4fe916d8841d285e25ec0c79df4b7e3781750ed8f561e7"
61 "md5=6a44152813a8357668b081c331c0aec9"
62 ]
63}