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-configurator"
21 "dune" {>= "2.0"}
22 "bos" {with-test}
23 "rresult" {with-test}
24 "alcotest" {with-test & < "1.0.0"}
25]
26build: [
27 ["dune" "subst"]
28 ["dune" "build" "-p" name "-j" jobs]
29 ["dune" "runtest" "-p" name] {with-test}
30]
31url {
32 src:
33 "https://github.com/mirage/ocaml-base64/releases/download/v3.3.0/base64-v3.3.0.tbz"
34 checksum: [
35 "sha256=3ae91334f029ccd96690b598010f94e55811095d14a37d52f1724e5eca0f35cc"
36 "sha512=818103de0ac03b9a04f5aafc119341522bf69e57dfbd038b321f92ab8cbf7fc7084ca3012086baece12da94d4d5448eb927f70b741025a13d49e93ca6ea27d41"
37 ]
38}