this repo has no description
1opam-version: "2.0"
2maintainer: "mirageos-devel@lists.xenproject.org"
3authors: [ "Thomas Gazagnaire"
4 "Anil Madhavapeddy" "Calascibetta Romain"
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 & < "1.0.0"}
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.2.0/base64-v3.2.0.tbz"
33 checksum: [
34 "sha256=b6717d5540d22a51e0ce473f94e89acbf6592f234c3d096449e7ed4796854ecb"
35 "md5=8ac1d6145277cee57d36611d1c420f05"
36 ]
37}