this repo has no description
1opam-version: "2.0" 2maintainer: "mirageos-devel@lists.xenproject.org" 3authors: [ "Thomas Gazagnaire" 4 "Anil Madhavapeddy" 5 "Peter Zotov" ] 6license: "ISC" 7homepage: "https://github.com/mirage/ocaml-base64" 8doc: "http://mirage.github.io/ocaml-base64/" 9bug-reports: "https://github.com/mirage/ocaml-base64/issues" 10dev-repo: "git+https://github.com/mirage/ocaml-base64.git" 11synopsis: "Base64 encoding for OCaml" 12description: """ 13Base64 is a group of similar binary-to-text encoding schemes that represent 14binary data in an ASCII string format by translating it into a radix-64 15representation. It is specified in RFC 4648. 16""" 17depends: [ 18 "ocaml" {>= "4.03.0"} 19 "base-bytes" 20 "dune" {>= "1.0.1"} 21 "bos" {with-test} 22 "rresult" {with-test} 23 "alcotest" {with-test} 24] 25build: [ 26 ["dune" "subst"] 27 ["dune" "build" "-p" name "-j" jobs] 28 ["dune" "runtest" "-p" name] {with-test} 29] 30url { 31 src: 32 "https://github.com/mirage/ocaml-base64/releases/download/v3.0.0/base64-v3.0.0.tbz" 33 checksum: [ 34 "sha256=3af235a137917357583abf72e845cdcb129286145db25128218ea4c67a19ea6a" 35 "md5=f94f8e73b7325bf02436293b1321e35b" 36 ] 37}