Skip to content
View raw
1
(lang dune 3.24)
2
3
(name ogit)
4
5
(generate_opam_files true)
6
7
(authors "Marius Peter")
8
9
(maintainers "Marius Peter")
10
11
(license LICENSE)
12
13
(documentation https://url/to/documentation)
14
15
(package
16
(name ogit)
17
(synopsis "Mobile-friendly replacement for cgit")
18
(description "A longer description")
19
(depends
20
(ocaml (= 5.5.0))
21
(dream (>= 1.0.0~alpha8))
22
(dream-html (>= 3.11.2))
23
(git-unix (>= 3.18.0))
24
(crunch (>= 4.0.0))
25
(ocamlformat (and :with-dev-setup (= 0.29.0)))
26
(alcotest (and :with-test (>= 1.9.1)))
27
(toml (>= 7.1.0))
28
(hilite (>= 0.5.0))
29
(textmate-language (>= 0.6.0))
30
(yojson (>= 2.2.2)))
31
(tags
32
(git "web interface")))
33