-
Notifications
You must be signed in to change notification settings - Fork 7
/
conan-lwt.opam
31 lines (31 loc) · 1.02 KB
/
conan-lwt.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
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 <romain.calascibetta@gmail.com>"
authors: "Romain Calascibetta <romain.calascibetta@gmail.com>"
license: "MIT"
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"}
"dune" {>= "2.9.0"}
"lwt"
"bigstringaf" {>= "0.2.0"}
"conan" {= version}
"alcotest" {>= "0.8.1" & with-test}
"crowbar" {with-test}
"fmt" {with-test}
"rresult" {>= "0.6" & 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"