this repo has no description
1opam-version: "2.0" 2maintainer: "thomas@gazagnaire.org" 3authors: [ 4 "Thomas Gazagnaire" 5 "Anil Madhavapeddy" 6 "Gabriel Radanne" 7 "Mindy Preston" 8 "Thomas Leonard" 9 "Nicolas Ojeda Bar" 10 "Dave Scott" 11 "David Kaloper" 12 "Hannes Mehnert" 13 "Richard Mortier" 14] 15license: "ISC" 16tags: "org:mirage" 17homepage: "https://github.com/mirage/mirage-device" 18doc: "https://mirage.github.io/mirage-device/" 19bug-reports: "https://github.com/mirage/mirage-device/issues" 20depends: [ 21 "ocaml" {>= "4.06.0"} 22 "dune" {>= "1.0"} 23 "fmt" 24 "lwt" {>= "4.0.0"} 25] 26build: [ 27 ["dune" "subst"] {dev} 28 ["dune" "build" "-p" name "-j" jobs] 29] 30dev-repo: "git+https://github.com/mirage/mirage-device.git" 31synopsis: "Abstract devices for MirageOS" 32description: """ 33mirage-device defines [Mirage_device.S][1], the signature for 34basic abstract devices for MirageOS and a pretty-printing function 35for device errors. 36 37[1]: https://mirage.github.io/mirage-device/Mirage_device.S.html 38""" 39url { 40 src: 41 "https://github.com/mirage/mirage-device/releases/download/v2.0.0/mirage-device-v2.0.0.tbz" 42 checksum: [ 43 "sha256=04286c6728f280cf6ec53dc54e67d552b1375d5b544a45c9dab8536ea2ef54a1" 44 "sha512=f6718647230930927b8f870ff1dd9d55554473f555641154db83a2123a3bda002431616cf012fcb7a07ab1e5cde622a6b52b0cc804b73a77db55db5e1276c6da" 45 ] 46} 47flags: deprecated 48post-messages: [ "mirage-device is deprecated" ] 49x-maintenance-intent: ["(none)"]