this repo has no description
1opam-version: "2.0"
2synopsis: "Verifiable Delay Functions bindings to Chia's VDF"
3maintainer: "Nomadic Labs <contact@nomadic-labs.com>"
4authors: "Nomadic Labs"
5license: "MIT"
6homepage: "https://gitlab.com/nomadic-labs/cryptography/ocaml-chia-vdf"
7bug-reports:
8 "https://gitlab.com/nomadic-labs/cryptography/ocaml-chia-vdf/-/issues"
9depends: [
10 "dune" {>= "2.8"}
11 "ocaml" {>= "4.14"}
12 "dune-configurator"
13 "zarith" {>= "1.10" & < "2.0"}
14 "integers"
15 "conf-gmp"
16 "conf-g++"
17 "stdlib-random"
18 "conf-pkg-config"
19 "alcotest" {with-test}
20 "bisect_ppx" {with-test & >= "2.5"}
21 "odoc" {with-doc}
22]
23available: arch != "arm32" & arch != "x86_32" & os-family != "windows"
24build: [
25 ["dune" "subst"] {dev}
26 [
27 "dune"
28 "build"
29 "-p"
30 name
31 "-j"
32 jobs
33 "@install"
34 "@runtest" {with-test}
35 "@doc" {with-doc}
36 ]
37]
38dev-repo:
39 "git+https://gitlab.com/nomadic-labs/cryptography/ocaml-chia-vdf.git"
40url {
41 src:
42 "https://gitlab.com/nomadic-labs/cryptography/ocaml-chia-vdf/-/archive/v0.0.5/ocaml-chia-vdf-v0.0.5.tar.gz"
43 checksum: [
44 "md5=a249de2b8e62043a61c7626565dbbe23"
45 "sha512=e224df36e8ce6bc76d9f15e94664224106608100bef0595621793c6208b03afd37114ebf8f733a924e6b560904390cdaa3422e71bc6bb057bcb4cd846320c1eb"
46 ]
47}