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_beta1/mirage-4.0.0.beta1.tbz"
56 checksum: [
57 "sha256=3d3ea9d35a475210eb9212b43a9e9516ec977f53365053402977b964255a3fec"
58 "sha512=4889e143d9c4e4082e23fbccc577e73b4849b8b4e01d42d58a1a1bf2b7f55a4ae2d00cd39ff2fafc4067d37c8e0bc8df26257e1d50127e026e61a23682df0589"
59 ]
60}
61x-commit-hash: "e3550ff28408f079f4ca010d1a63b9265164ea7b"