this repo has no description
1opam-version: "2.0"
2maintainer: "martin@mjambon.com"
3authors: ["Martin Jambon"]
4
5homepage: "https://github.com/mjambon/atdgen"
6bug-reports: "https://github.com/mjambon/atdgen/issues"
7dev-repo: "git+https://github.com/mjambon/atdgen.git"
8build: [ [make] ]
9
10install: [make "findlib-install"]
11
12remove: [
13 ["ocamlfind" "remove" "atdgen"]
14]
15depends: [
16 "ocaml"
17 "ocamlfind"
18 "atd" {>= "1.1.0" & < "1.13.0"}
19 "biniou" {>= "1.0.6"}
20 "yojson" {>= "1.2.1" & < "2.0.0"}
21]
22synopsis:
23 "Generates efficient JSON serializers, deserializers and validators"
24description: """
25Atdgen is a command-line program that takes as input type definitions in the
26ATD syntax and produces OCaml code suitable for data serialization and
27deserialization.
28
29Two data formats are currently supported, these are biniou and JSON.
30Atdgen-biniou and Atdgen-json will refer to Atdgen used in one context or the
31other.
32
33Atdgen was designed with efficiency and durability in mind. Software authors
34are encouraged to use Atdgen directly and to write tools that may reuse part of
35Atdgen’s source code."""
36flags: light-uninstall
37url {
38 src: "https://github.com/mjambon/atdgen/archive/v1.9.1.tar.gz"
39 checksum: [
40 "sha256=6021aa895defa73d99847217a4f79e8acb6845a129e09969b2013f07291a44d7"
41 "md5=00af8222f31ff8de5119bd5349778fa3"
42 ]
43}
44extra-source "atdgen.install" {
45 src:
46 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/atdgen/atdgen.install.1.9.1"
47 checksum: [
48 "sha256=ee1afc7f0cc84c219fcc239e7ac362f7c980f70140afe4b67c5f35bafc07b4e9"
49 "md5=b9d736bf74a2b94cd4916f2bdb99b259"
50 ]
51}