this repo has no description
1opam-version: "2.0"
2maintainer: "hannes@mehnert.org"
3homepage: "https://github.com/mirage/mirage-random-stdlib"
4bug-reports: "https://github.com/mirage/mirage-random-stdlib/issues"
5dev-repo: "git+https://github.com/mirage/mirage-random-stdlib.git"
6doc: "https://mirage.github.io/mirage-random-stdlib/"
7authors: ["Thomas Gazagnaire" "Hannes Mehnert"]
8tags: [ "org:mirage"]
9license: "ISC"
10
11build: [
12 [ "dune" "subst" ] {dev}
13 [ "dune" "build" "-p" name "-j" jobs ]
14]
15
16depends: [
17 "dune" {>= "1.1.0"}
18 "cstruct" {>= "1.9.0"}
19 "ocaml" {>= "4.04.2"}
20 "mirage-random" {< "2.0.0"}
21 "mirage-entropy"
22]
23synopsis: "Random device implementation using the OCaml stdlib"
24description: """
25mirage-random-stdlib implements `Mirage_random.C` using the `Random` from
26the OCaml standard library (a lagged-Fibonacci PRNG). The entropy is seeded
27by mirage-entropy, depending on CPU features.
28"""
29url {
30 src:
31 "https://github.com/mirage/mirage-random-stdlib/releases/download/0.0.1/mirage-random-stdlib-0.0.1.tbz"
32 checksum: [
33 "sha256=6484de9dfcf733429fb51139cea88439f41cf79d2785de5f72b0d890d48874a6"
34 "md5=63a8d2f730750f7cd4f4377b7adca88e"
35 ]
36}
37flags: deprecated
38post-messages: [ "mirage-random-stdlib is deprecated" ]