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"
11depends: [
12 "ocaml"
13 "base-bytes"
14 "ocamlfind" {build}
15 "ocamlbuild" {build}
16 "topkg" {build}
17 "bos" {with-test}
18 "rresult" {with-test}
19 "alcotest" {with-test & >= "0.4.0"}
20]
21build: [
22 ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" "--tests" "false"]
23 ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" "--tests" "true"]
24 {with-test}
25 ["ocaml" "pkg/pkg.ml" "test"] {with-test}
26]
27synopsis: "For OCaml"
28description: """
29Base64 is a group of similar binary-to-text encoding schemes that represent
30binary data in an ASCII string format by translating it into a radix-64
31representation. It is specified in [RFC 4648][rfc4648].
32
33See also [documentation][docs].
34
35[rfc4648]: https://tools.ietf.org/html/rfc4648
36[docs]: http://mirage.github.io/ocaml-base64"""
37url {
38 src:
39 "https://github.com/mirage/ocaml-base64/releases/download/v2.1.2/base64-2.1.2.tbz"
40 checksum: [
41 "sha256=d8d1a0bb15a81d1ccfb2faa37275bc43f8ac0893cdd7f984c83357c8b8d285dc"
42 "md5=acef73296915b4f8052868f182862dc8"
43 ]
44}