this repo has no description
1opam-version: "2.0"
2maintainer: "Nick Zuber <zuber.nicholas@gmail.com>"
3authors: "Nick Zuber <zuber.nicholas@gmail.com>"
4homepage: "https://github.com/nickzuber/chalk"
5bug-reports: "https://github.com/nickzuber/chalk/issues"
6license: "MIT"
7dev-repo: "git+ssh://git@github.com/nickzuber/chalk.git"
8build: [make "build"]
9install: [make "build"]
10remove: ["ocamlfind" "remove" "chalk"]
11depends: ["ocaml" "ocamlfind"]
12synopsis: "Composable and simple terminal highlighting package"
13description: """
14Composable and simple terminal highlighting package. Very simple API;
15and example usage could be as follows:
16
17```ocaml
18let some_string = "Hello world!"
19 |> Chalk.red
20 |> Chalk.bold
21 |> Chalk.underline
22```"""
23flags: light-uninstall
24url {
25 src: "https://github.com/nickzuber/chalk/archive/v1.0.tar.gz"
26 checksum: [
27 "sha256=59b1bbffa47032e8fcf56cb7b3e50a2c164801c4365da98044eccb984ff30a1d"
28 "md5=c685f3024e5a4e74c86b4d9ce67ae34f"
29 ]
30}