this repo has no description
1opam-version: "2.0" 2homepage: "https://github.com/mirage/mirage-entropy" 3dev-repo: "git+https://github.com/mirage/mirage-entropy.git" 4bug-reports: "https://github.com/mirage/mirage-entropy/issues" 5doc: "https://mirage.github.io/mirage-entropy/" 6maintainer: "david@numm.org" 7license: "BSD-2-Clause" 8 9build: [ 10 ["dune" "subst"] {dev} 11 ["dune" "build" "-p" name "-j" jobs] 12 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 13] 14depends: [ 15 "conf-pkg-config" {build} 16 "dune" {>= "1.7.0"} 17 "ocaml" {>= "4.07.0"} 18 "cstruct" {>= "4.0.0" & < "6.1.0"} 19 "mirage-runtime" {>= "3.7.0" & < "4.0"} 20 "lwt" {>= "4.0.0"} 21 "mirage-unix" {with-test & >= "3.0.0" & < "5.0.0"} 22] 23depopts: [ 24 "ocaml-freestanding" 25 "mirage-xen-posix" 26] 27conflicts: [ 28 "mirage-xen-posix" {<"3.1.0"} 29 "ocaml-freestanding" {< "0.4.1"} 30] 31tags: [ "org:mirage"] 32available: [ 33 arch = "arm" | arch = "x86_32" | arch = "x86_64" | arch = "arm64" 34] 35synopsis: "Entropy source for MirageOS unikernels" 36description: """ 37mirage-entropy implements various entropy sources for MirageOS unikernels: 38- timer based ones (see [whirlwind RNG paper](https://www.ieee-security.org/TC/SP2014/papers/Not-So-RandomNumbersinVirtualizedLinuxandtheWhirlwindRNG.pdf)) 39- rdseed and rdrand (x86/x86-64 only) 40""" 41authors: ["Hannes Mehnert" "David Kaloper" "Anil Madhavapeddy" "Dave Scott"] 42url { 43 src: 44 "https://github.com/mirage/mirage-entropy/releases/download/v0.5.1/mirage-entropy-v0.5.1.tbz" 45 checksum: [ 46 "sha256=612b2c17f18a56ed5cacc35006be6869016c26668eeaf301fd068b6467755d40" 47 "sha512=194624c9084664b41fbac88c45542a862762e8c0eaec7aa8af2e9fed4b8a5dbaf91303676f279defb4f57eaf74d9e11550d0233a471ef61e0b9f278287ecb031" 48 ] 49} 50flags: deprecated 51post-messages: [ "mirage-entropy is deprecated" ] 52x-maintenance-intent: ["(none)"]