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.04.0"} 23 "dune" {>= "1.1"} 24 "base-unix" 25 "cmdliner" {>= "0.9.8" & < "1.1.0"} 26 "rresult" 27 "astring" 28 "fmt" {>= "0.8.5"} 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/v3.0.1/functoria-v3.0.1.tbz" 47 checksum: [ 48 "sha256=e37f05dd2921a7690b32695aa2c600d78c58b2775fc56725307bf0f5a620435d" 49 "sha512=5355b883001c10e7513688c171f3709190a7d1b1456dcf6cdb2e60c8192b8390ca84a73133431a9ce8a2b1222ab9de8862460a59982635bdc9165c5af09a841d" 50 ] 51} 52available: opam-version >= "2.2.0" 53flags: deprecated