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-bytes" 9bug-reports: "https://github.com/mirage/ocaml-base64/issues" 10dev-repo: "git+https://github.com/mirage/ocaml-base64.git" 11build: [ 12 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 13 ["ocaml" "setup.ml" "-build"] 14 ["ocaml" "setup.ml" "-doc"] {with-doc} 15] 16remove: [ 17 ["ocamlfind" "remove" "base64"] 18] 19depends: [ 20 "ocaml" {< "5.0"} 21 "ocamlfind" {build} 22 "base-bytes" 23 "ocamlbuild" {build} 24] 25conflicts: [ 26 "extlib" 27 "extlib-compat" 28] 29install: ["ocaml" "setup.ml" "-install"] 30synopsis: "Base64 encoding and decoding library" 31description: """ 32Base64 is a group of similar binary-to-text encoding schemes that represent 33binary data in an ASCII string format by translating it into a radix-64 34representation. It is specified in RFC 2045.""" 35flags: light-uninstall 36url { 37 src: "https://github.com/mirage/ocaml-base64/archive/v1.1.0.tar.gz" 38 checksum: [ 39 "sha256=409e4a8cc547642d221d1b65c635099c9e0d5a8256cedd714542207165210287" 40 "md5=cebd2543f9b40276f63875f6695e7b57" 41 ] 42}