this repo has no description
1opam-version: "2.0" 2authors: ["David Kaloper Meršinjak <david@numm.org>"] 3maintainer: "David Kaloper Meršinjak <david@numm.org>" 4homepage: "https://github.com/mirleft/ocaml-asn1-combinators" 5doc: "https://mirleft.github.io/ocaml-asn1-combinators/doc" 6license: "ISC" 7dev-repo: "git+https://github.com/mirleft/ocaml-asn1-combinators.git" 8bug-reports: "https://github.com/mirleft/ocaml-asn1-combinators/issues" 9tags: [ "org:mirage" ] 10build: [ 11 ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" "--tests" "false"] 12 ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" "--tests" "true"] 13 {with-test} 14 ["ocaml" "pkg/pkg.ml" "test"] {with-test} 15] 16depends: [ 17 "ocaml" {>= "4.02.0" & < "4.12.0"} 18 "ocamlfind" {build} 19 "ocamlbuild" {build} 20 "topkg" {build} 21 "result" 22 "cstruct" {<"5.0.0"} 23 "zarith" 24 "ptime" 25 "ounit" {with-test} 26] 27conflicts: [ "cstruct" {< "1.6.0"} ] 28synopsis: "Embed typed ASN.1 grammars in OCaml" 29description: """ 30asn1-combinators is a library for expressing ASN.1 in OCaml. Skip the notation 31part of ASN.1, and embed the abstract syntax directly in the language. These 32abstract syntax representations can be used for parsing, serialization, or 33random testing. 34 35The only ASN.1 encodings currently supported are BER and DER. 36 37asn1-combinators is distributed under the ISC license.""" 38url { 39 src: 40 "https://github.com/mirleft/ocaml-asn1-combinators/releases/download/v0.2.0/asn1-combinators-0.2.0.tbz" 41 checksum: [ 42 "sha256=109d7f0b494f98eaf393c68ece6c6ccc9f6ee31b3bab8b8d517dee3542cff3b1" 43 "md5=f695aec35f8934d20d966032adbf3520" 44 ] 45}