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"] 14available: opam-version >= "2.2.0" 15 16build: [ 17 ["dune" "subst"] {dev} 18 ["dune" "build" "-p" name "-j" jobs] 19 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 20 ["env" "INSIDE_FUNCTORIA_TESTS=1" "dune" "exec" "-p" name "-j" jobs "--" 21 "test/functoria/e2e/test.exe"] {with-test} 22] 23 24depends: [ 25 "ocaml" {>= "4.08.0"} 26 "dune" {>= "2.9.0" | (with-test & >= "3.0.0")} 27 "base-unix" 28 "cmdliner" {>= "1.1.1" & < "2.0.0"} 29 "cmdliner" {with-test & < "1.2.0"} 30 "rresult" {>= "0.7.0"} 31 "result" {>= "1.5"} 32 "astring" 33 "fmt" {>= "0.8.7"} 34 "logs" 35 "bos" 36 "fpath" 37 "emile" {>= "1.1"} 38 "uri" {>= "4.2.0"} 39 "alcotest" {with-test} 40 "functoria-runtime" {= version & with-test} 41] 42synopsis: "A DSL to organize functor applications" 43description: """ 44Functoria is a DSL to describe a set of modules and functors, their types and 45how to apply them in order to produce a complete application. 46 47The main use case is mirage. See the [mirage](https://github.com/mirage/mirage) 48repository for details. 49""" 50url { 51 src: 52 "https://github.com/mirage/mirage/releases/download/v4.1.0/mirage-4.1.0.tbz" 53 checksum: [ 54 "sha256=7597f798e44cccdf34fb3d493ba3f67a6a3bf9aa81bdd5a1ba748c0ec9819fbd" 55 "sha512=aedd3f2b8a43d56f0f0a7c8029b4ca7ec60bc25f20f8cda172a0542dffefda72257a507cde66627818435e5a0a80468be3ee510a591fed7cfad1ff9a2815b413" 56 ] 57} 58x-commit-hash: "e07fe328dd1186987e8ddad6060bac1c1a178905" 59flags: deprecated