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 "base-bytes" 19 "dune" {>= "1.0.1"} 20 "bos" {with-test} 21 "rresult" {with-test} 22 "alcotest" {with-test} 23] 24build: [ 25 ["dune" "subst"] 26 ["dune" "build" "-p" name "-j" jobs] 27 ["dune" "runtest" "-p" name] {with-test} 28] 29url { 30 src: 31 "https://github.com/mirage/ocaml-base64/releases/download/v2.3.0/base64-v2.3.0.tbz" 32 checksum: [ 33 "sha256=7ac217bcd65d9ea0c3bbdbaaeea8e0c7f3271e036ef55f81a37261d45e15be9d" 34 "md5=f0b29524dbaff3ac6eb4d6c578b1b80d" 35 ] 36}