this repo has no description
1opam-version: "2.0" 2maintainer: "Davide Gessa <gessadavide@gmail.com>" 3authors: "Davide Gessa <gessadavide@gmail.com>" 4homepage: "https://github.com/dakk/secp256k1-ml" 5bug-reports: "https://github.com/dakk/secp256k1-ml/issues" 6license: "MIT" 7dev-repo: "git+https://github.com/dakk/secp256k1-ml.git" 8build: [ 9 ["oasis" "setup"] 10 ["./configure" "--prefix=%{prefix}%"] 11 [make] 12] 13install: [make "install"] 14remove: ["ocamlfind" "remove" "secp256k1"] 15depends: [ 16 "ocaml" {< "5.0"} 17 "oasis" {build & >= "0.4"} 18 "ocamlbuild" {build} 19 "ocamlfind" {build} 20 "conf-secp256k1" 21] 22synopsis: "Elliptic curve library secp256k1 wrapper for Ocaml" 23description: """ 24This library wrap the secp256k1 EC(DSA) library into an OCaml library. At 25the moment only a subset of functionalities are available: 26 27- Context: create, clone, destroy, randomize 28- Elliptic curve: public key creation 29- ECDSA: verify, sign 30 31 32All exchanged data (pubkey, signature, seckey) are represented as hex 33strings.""" 34flags: light-uninstall 35url { 36 src: "https://github.com/dakk/secp256k1-ml/archive/0.1.5.zip" 37 checksum: [ 38 "sha256=d2d94419b3e04fc27168cbf3df9e10575a485cb205a3564aa56345881112feb9" 39 "md5=ede774161e7dc90b97e9978736d73fc6" 40 ] 41}