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]
23depopts: [
24 "mirage-xen-posix"
25 "ocaml-freestanding"
26]
27conflicts: [
28 "mirage-xen" {< "3.1.0"}
29 "ocaml-freestanding" {< "0.4.1"}
30]
31description: """
32Mirage-crypto provides symmetric ciphers (DES, AES, RC4), and hashes (MD5,
33SHA-1, SHA-2).
34"""
35url {
36 src:
37 "https://github.com/mirage/mirage-crypto/releases/download/v0.8.0/mirage-crypto-v0.8.0.tbz"
38 checksum: [
39 "sha256=30e65722b932523eeb5cf6ee3956e101980c687c2a1b83763ae19fb0874862f1"
40 "sha512=2bf0d94eddb5e513b72ccacbd1eec7d64001ac28b793e203a86cff483e2a308ad32a78f3c4bd5bfb1d0aa62e098f63834fa50c31b64a7842982bb5adef201556"
41 ]
42}
43available: arch != "ppc64" & arch != "s390x" & arch != "arm32"