forked from hacl-star/hacl-star
-
Notifications
You must be signed in to change notification settings - Fork 1
/
hacl-star-raw.opam
37 lines (37 loc) · 1.07 KB
/
hacl-star-raw.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
opam-version: "2.0"
name: "hacl-star-raw"
version: "0.4.5"
synopsis: "Auto-generated low-level OCaml bindings for EverCrypt/HACL*"
description: """
This package contains a snapshot of the EverCrypt crypto provider and
the HACL* library, along with automatically generated Ctypes bindings.
For a higher-level idiomatic API see the `hacl-star` package, of
which `hacl-star-raw` is a dependency.
"""
maintainer: "Victor Dumitrescu <[email protected]>"
authors: [ "Project Everest" ]
license: "Apache-2.0"
homepage: "https://hacl-star.github.io/"
bug-reports: "https://github.com/project-everest/hacl-star/issues"
depends: [
"ocaml" { >= "4.08.0" }
"ocamlfind" {build}
"ctypes" { >= "0.18.0" }
"conf-which" {build}
]
available: [
arch != "ppc64" & arch != "ppc32" &
(os = "freebsd" | os-family != "bsd")
]
x-ci-accept-failures: [
"centos-7" # Default C compiler is too old
"oraclelinux-7" # Default C compiler is too old
]
build: [
["./configure"]
[make]
]
install: [
make "install-hacl-star-raw"
]
dev-repo: "git+https://github.com/project-everest/hacl-star.git"