this repo has no description
1opam-version: "2.0"
2maintainer: "contact@nomadic-labs.com"
3authors: "Vincent Bernardoff <vb@luminar.eu.org>"
4homepage: "https://gitlab.com/nomadic-labs/ocaml-secp256k1-internal"
5synopsis: "Bindings to secp256k1 internal functions (generic operations on the curve)"
6
7license: "MIT"
8bug-reports: "https://gitlab.com/nomadic-labs/ocaml-secp256k1-internal/issues"
9dev-repo: "git+https://gitlab.com/nomadic-labs/ocaml-secp256k1-internal"
10
11build: [
12 ["dune" "build" "-j" jobs "-p" name "@install"]
13 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
14]
15depends: [
16 "conf-gmp" {build}
17 "ocaml" {< "5.0.0"}
18 "dune" {>= "1.0.1"}
19 "cstruct" {>= "3.2.1" & < "6.1.0"}
20 "bigstring" {>= "0.1.1"}
21 "hex" {with-test & >= "1.4.0"}
22 "alcotest" {with-test}
23]
24
25available: arch != "s390x"
26
27url {
28 src: "https://gitlab.com/nomadic-labs/ocaml-secp256k1-internal/-/archive/v0.1/ocaml-secp256k1-internal-v0.1.tar.bz2"
29 checksum: [
30 "md5=16cfea99a40a430240d9f6cce52d5301"
31 "sha256=5425342359c72e019bc0d0fff3ca66a0e80acf17f68f1a39c436f6791b0faed5"
32 "sha512=4fe1227dc0e19bd09c376c2990ad003fc83003fb92b9e30420a85ddd5e521adf1946f7092dee1501c68078062e0e47a7a1f1eb3faaf5ec2be25e695506927391"
33 ]
34}