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.08.0"}
18 "dune" {>= "1.7"}
19 "dune-configurator" {>= "2.0.0"}
20 "ounit" {with-test}
21 "cstruct" {>="3.2.0" & < "6.1.0"}
22 "bigarray-compat" # required to get eqaf.cstruct
23 "eqaf" {>= "0.7" & < "0.10"}
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, ChaCha20/Poly1305), and
35hashes (MD5, SHA-1, SHA-2).
36"""
37x-commit-hash: "d53056926b11260a92650ea70093d7f4fa025a9b"
38url {
39 src:
40 "https://github.com/mirage/mirage-crypto/releases/download/v0.8.5/mirage-crypto-v0.8.5.tbz"
41 checksum: [
42 "sha256=d357dd3524abb271089b26403e3bd1bdde465e17512ca69d6cc043f8ca07d850"
43 "sha512=80eab6c1f7d6ddc8332eef8f0a198e0568167f0c28ca4f68d4e6084a7c7f3455574b94ccab6924d94d5aa3910273fedc838ca4d81a47e3eddb3d529ecc75be93"
44 ]
45}
46available: arch != "s390x" & arch != "arm32"