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/functoria" 9bug-reports: "https://github.com/mirage/functoria/issues" 10dev-repo: "git+https://github.com/mirage/functoria.git" 11doc: "https://mirage.github.io/functoria/" 12license: "ISC" 13tags: ["org:mirage"] 14 15build: [ 16 ["dune" "subst"] {dev} 17 ["dune" "build" "-p" name "-j" jobs] 18 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 19] 20 21depends: [ 22 "ocaml" {>= "4.03.0"} 23 "dune" 24 "base-unix" 25 "cmdliner" {>= "0.9.8" & < "1.1.0"} 26 "rresult" 27 "astring" 28 "fmt" 29 "ocamlgraph" 30 "logs" 31 "bos" 32 "fpath" 33 "alcotest" {with-test} 34 "ptime" 35] 36synopsis: "A DSL to organize functor applications" 37description: """ 38Functoria is a DSL to describe a set of modules and functors, their types and 39how to apply them in order to produce a complete application. 40 41The main use case is mirage. See the [mirage](https://github.com/mirage/mirage) 42repository for details. 43""" 44url { 45 src: 46 "https://github.com/mirage/functoria/releases/download/2.2.2/functoria-2.2.2.tbz" 47 checksum: [ 48 "sha256=275c20f3faf5adad24ea39e7183ae4aceaae605077c233e2579b874a3005caf8" 49 "md5=5d461d4499ab88533e654e0d15958a62" 50 ] 51} 52available: opam-version >= "2.2.0" 53flags: deprecated