this repo has no description
1opam-version: "2.0" 2maintainer: "thomas@gazagnaire.org" 3homepage: "https://github.com/mirage/mirage-random" 4bug-reports: "https://github.com/mirage/mirage-random/issues" 5dev-repo: "git+https://github.com/mirage/mirage-random.git" 6doc: "https://mirage.github.io/mirage-random/" 7authors: ["Thomas Gazagnaire" "Anil Madhavapeddy" "Gabriel Radanne" 8 "Mindy Preston" "Thomas Leonard" "Nicolas Ojeda Bar" 9 "Dave Scott" "David Kaloper" "Hannes Mehnert" "Richard Mortier"] 10tags: [ "org:mirage"] 11license: "ISC" 12 13build: [ 14 [ "jbuilder" "subst" "-p" name ] {dev} 15 [ "jbuilder" "build" "-p" name "-j" jobs ] 16] 17 18depends: [ 19 "ocaml" 20 "jbuilder" {>= "1.0+beta9"} 21 "cstruct" {>= "1.9.0"} 22] 23synopsis: 24 "Random signatures for MirageOS, and an implementation using stdlib" 25description: """ 26mirage-random defines [Mirage_random.S][1] and [Mirage_random.C][2] 27the signature for random-related devices for MirageOS. It also 28provides an implementation of `C` using `Random` from the OCaml standard 29library. 30 31[1]: https://mirage.github.io/mirage-random/Mirage_random.S.html 32[2]: https://mirage.github.io/mirage-random/Mirage_random.C.html 33 34### Installation 35 36`mirage-random` can be installed with `opam`: 37 38 opam install mirage-random 39 40If you don't use `opam` consult the [`opam`](opam) file for build 41instructions. 42 43### Documentation 44 45The documentation and API reference is automatically generated by 46`ocamldoc` from the interfaces. It can be consulted [online][2]. 47 48[2]: https://mirage.github.io/mirage-random/Mirage_random.html""" 49url { 50 src: 51 "https://github.com/mirage/mirage-random/releases/download/v1.1.0/mirage-random-1.1.0.tbz" 52 checksum: [ 53 "sha256=a629f8693425ddb1e8435e67d7125aa69be7534ea73d28c8ef861c8646c3f656" 54 "md5=81775f222b1bf5be7759b4595c5a4615" 55 ] 56} 57flags: deprecated 58post-messages: [ "mirage-random is deprecated" ]