this repo has no description
1opam-version: "2.0"
2homepage: "https://github.com/mirage/mirage-crypto"
3dev-repo: "git+https://github.com/mirage/mirage-crypto.git"
4bug-reports: "https://github.com/mirage/mirage-crypto/issues"
5doc: "https://mirage.github.io/mirage-crypto/doc"
6authors: ["David Kaloper <dk505@cam.ac.uk>" "Hannes Mehnert <hannes@mehnert.org>" ]
7maintainer: "Hannes Mehnert <hannes@mehnert.org>"
8license: "ISC"
9synopsis: "Simple symmetric cryptography for the modern age"
10
11build: [ ["dune" "subst"] {dev}
12 ["dune" "build" "-p" name "-j" jobs ]
13 ["dune" "runtest" "-p" name "-j" jobs] {with-test} ]
14
15depends: [
16 "conf-pkg-config" {build}
17 "ocaml" {>= "4.07.0"}
18 "dune" {>= "1.7"}
19 "dune-configurator" {>= "2.0.0"}
20 "cpuid" {build & >= "0.1.2"}
21 "ounit" {with-test}
22 "cstruct" {>="3.2.0" & < "6.1.0"}
23 "ocplib-endian"
24]
25depopts: [
26 "mirage-xen-posix"
27 "ocaml-freestanding"
28]
29conflicts: [
30 "mirage-xen" {< "3.1.0"}
31 "ocaml-freestanding" {< "0.4.1"}
32]
33description: """
34Mirage-crypto provides symmetric ciphers (DES, AES, RC4), and hashes (MD5,
35SHA-1, SHA-2).
36"""
37url {
38 src:
39 "https://github.com/mirage/mirage-crypto/releases/download/v0.6.2/mirage-crypto-v0.6.2.tbz"
40 checksum: [
41 "sha256=e2284dc0f8d37110f4713b87145a26a2bbce3e43f14be51e88de18db5922b823"
42 "sha512=2c9808261aec8498921e4dce2d66214e10dfe65e2c3729c081731d6c44abc0e990233e5398c9c2d31a97d1a40bdd38920c54817f572d3b592f4257ce85b331da"
43 ]
44}
45available: arch != "ppc64" & arch != "s390x" & arch != "arm32" & arch != "x86_32"