this repo has no description
1opam-version: "2.0" 2maintainer: "Etienne Millon <etienne@cryptosense.com>" 3homepage: "http://gmplib.org/" 4bug-reports: "https://github.com/ocaml/opam-repository/issues" 5license: "GPL-1.0-or-later" 6build: [ 7 ["sh" "-exc" "cc -c $CFLAGS -I/usr/local/include test.c"] {os != "macos"} 8 [ 9 "sh" 10 "-exc" 11 "cc -c $CFLAGS -I/opt/local/include -I/usr/local/include test.c" 12 ] {os = "macos"} 13] 14depends: ["conf-gmp"] 15synopsis: 16 "Virtual package relying on a GMP lib with constant-time modular exponentiation" 17description: """ 18This package can only install if the GMP lib is installed on the system and 19corresponds to a version that has the mpz_powm_sec function.""" 20authors: "Etienne Millon <etienne@cryptosense.com>" 21flags: conf 22extra-source "test.c" { 23 src: 24 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/conf-gmp-powm-sec/test.c.2" 25 checksum: [ 26 "sha256=388b3879530257a7e6e59b68208ee2a52de7be30e40eb4d3a54419708fdad490" 27 "md5=29317f477fa828e18428660ef31064fb" 28 ] 29}