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/v2.2.5/functoria-v2.2.5.tbz" 47 checksum: [ 48 "sha256=c88b955e7fea642c76aac297c63550c969a1be41f437d37d7dc59cac1b82aadd" 49 "sha512=c5c1d94031b9cd5367f6a8a5ee5c5e854971c4af16f6a9f489280c8c179739c5841531c0710eefb8e920c3bdf22ba64e7d6ff2e9ebfc2be4cce6e80dde804505" 50 ] 51} 52available: opam-version >= "2.2.0" 53flags: deprecated