this repo has no description
1opam-version: "2.0"
2synopsis: "Bitstrings and bitstring matching for OCaml"
3description: """
4The ocaml-bitstring project adds Erlang-style bitstrings and matching over bitstrings as a syntax extension and library for OCaml.
5You can use this module to both parse and generate binary formats, files and protocols.
6Bitstring handling is added as primitives to the language, making it exceptionally simple to use and very powerful.
7"""
8maintainer: ["Xavier R. Guérin <github@applepine.org>"]
9authors: ["Richard W.M. Jones" "Xavier R. Guérin"]
10license: "LGPL-2.0-or-later"
11homepage: "https://github.com/xguerin/bitstring"
12bug-reports: "https://github.com/xguerin/bitstring/issues"
13depends: [
14 "dune" {>= "2.5"}
15 "ocaml" {>= "4.04.1"}
16 "stdlib-shims" {>= "0.1.0"}
17]
18build: [
19 ["dune" "subst"] {dev}
20 [
21 "dune"
22 "build"
23 "-p"
24 name
25 "-j"
26 jobs
27 "@install"
28 "@runtest" {with-test}
29 "@doc" {with-doc}
30 ]
31]
32dev-repo: "git+https://github.com/xguerin/bitstring.git"
33url {
34 src: "https://github.com/xguerin/bitstring/archive/v4.1.0.tar.gz"
35 checksum: [
36 "sha256=67f0cc4466be538abf2d1fdea8517c35de1e7df8ce5b96341964ce8aebf54298"
37 "md5=8ae6f04eaa29481c6830ee3be5cba755"
38 ]
39}
40