-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconan-cli.opam
41 lines (41 loc) · 1.43 KB
/
conan-cli.opam
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
29
30
31
32
33
34
35
36
37
38
39
40
41
opam-version: "2.0"
name: "conan"
synopsis: "Identify type of your file (such as the MIME type)"
description: """\
Conan is a re-implementation in OCaml of the file command.
The library is system-agnostic and can be used with MirageOS."""
maintainer: "Romain Calascibetta <[email protected]>"
authors: "Romain Calascibetta <[email protected]>"
license: "BSD-2-Clause"
homepage: "https://github.com/mirage/conan"
doc: "https://mirage.github.io/conan/"
bug-reports: "https://github.com/mirage/conan/issues"
depends: [
"ocaml" {>= "4.08.0"}
"conan" {= version}
"conan-database" {= version}
"conan-unix" {= version}
"dune" {>= "2.9.0"}
"dune-site"
"alcotest" {>= "0.8.1" & with-test}
"crowbar" {with-test}
"fmt" {with-test}
"rresult" {>= "0.6" & with-test}
"mirage" {with-test}
"mirage-unix" {with-test}
"mirage-bootvar-unix" {with-test}
"mirage-console-unix" {with-test}
"mirage-clock-unix" {with-test}
"mirage-logs" {with-test}
"mirage-types" {with-test}
"mirage-types-lwt" {with-test}
"mirage-runtime" {with-test}
]
conflicts: ["ocaml-option-flambda"]
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "install" "-p" name "--create-install-files" name]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
dev-repo: "git+https://github.com/mirage/conan.git"