this repo has no description
1opam-version: "2.0"
2maintainer: "Gabriel Radanne <drupyog@zoho.com>"
3authors: [ "Thomas Gazagnaire"
4 "Anil Madhavapeddy"
5 "Dave Scott"
6 "Thomas Leonard"
7 "Gabriel Radanne" ]
8homepage: "https://github.com/mirage/mirage"
9bug-reports: "https://github.com/mirage/mirage/issues"
10dev-repo: "git+https://github.com/mirage/mirage.git"
11doc: "https://mirage.github.io/mirage/"
12license: "ISC"
13tags: ["org:mirage"]
14
15# Beta releases should be explicitely installed
16available: opam-version >= "2.1.0"
17flags: [ avoid-version ]
18
19build: [
20 ["dune" "subst"] {dev}
21 ["dune" "build" "-p" name "-j" jobs]
22 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
23 ["env" "INSIDE_FUNCTORIA_TESTS=1" "dune" "exec" "-p" name "-j" jobs "--"
24 "test/functoria/e2e/test.exe"] {with-test}
25]
26
27depends: [
28 "ocaml" {>= "4.08.0"}
29 "dune" {>= "2.8.0"}
30 "dune" {< "3.0.0" & with-test}
31 "base-unix"
32 "cmdliner" {>= "0.9.8" & < "1.1.0"}
33 "rresult" {>= "0.7.0"}
34 "result" {>= "1.5"}
35 "astring"
36 "fmt" {>= "0.8.7"}
37 "logs"
38 "bos"
39 "fpath"
40 "emile" {>= "1.1"}
41 "uri" {>= "4.2.0"}
42 "alcotest" {with-test}
43 "functoria-runtime" {= version & with-test}
44]
45synopsis: "A DSL to organize functor applications"
46description: """
47Functoria is a DSL to describe a set of modules and functors, their types and
48how to apply them in order to produce a complete application.
49
50The main use case is mirage. See the [mirage](https://github.com/mirage/mirage)
51repository for details.
52"""
53url {
54 src:
55 "https://github.com/mirage/mirage/releases/download/v4.0.0_beta3/mirage-4.0.0.beta3.tbz"
56 checksum: [
57 "sha256=f60766716c00d3596205e1b10ddad0759356fd4b85d4169950e3d34273938985"
58 "sha512=1f836f35b60655457c70418ddd4dd322607534826d6a1eb77d992b3a6481b6f83c85dd5887e2ab57870f988aa7655227bac346fc3243a35c57cface767f78b0b"
59 ]
60}
61x-commit-hash: "537f30badf994e4d57df2b1251e0fa75260fdfa6"