this repo has no description
1opam-version: "2.0" 2maintainer: "Hannes Mehnert <hannes@mehnert.org>" 3authors: ["Hannes Mehnert <hannes@mehnert.org>"] 4homepage: "https://github.com/hannesm/randomconv" 5doc: "https://hannesm.github.io/randomconv/doc" 6dev-repo: "git+https://github.com/hannesm/randomconv.git" 7bug-reports: "https://github.com/hannesm/randomconv/issues" 8license: "ISC" 9 10depends: [ 11 "ocaml" 12 "ocamlfind" {build} 13 "ocamlbuild" {build} 14 "topkg" {build} 15 "cstruct" {>= "1.9.0"} 16] 17build: [ 18 [ "ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" ] 19] 20synopsis: "Convert from random bytes to random native numbers" 21description: """ 22Given a function which produces random byte vectors, convert it to 23a number of your choice (int32/int64/int/float).""" 24url { 25 src: 26 "https://github.com/hannesm/randomconv/releases/download/0.1.0/randomconv-0.1.0.tbz" 27 checksum: [ 28 "sha256=498270ebf4df2da64ce376f2edade72cc7d7200cc6c83d99237617c968d075c4" 29 "md5=1551a69a7511de81f2ca6c3fe7d262c8" 30 ] 31}