this repo has no description
1opam-version: "2.0"
2synopsis: "Binding to the SHA cryptographic functions"
3description: """
4This is the binding for SHA interface code in OCaml. Offering the same
5interface than the MD5 digest included in the OCaml standard library.
6It's currently providing SHA1, SHA256 and SHA512 hash functions."""
7maintainer: ["dave@recoil.org"]
8authors: [
9 "Vincent Hanquez"
10 "Thomas Gazagnaire"
11 "Goswin von Brederlow"
12 "Eric Cooper"
13 "Florent Monnier"
14 "Forrest L Norvell"
15 "Vincent Bernadoff"
16 "David Scott"
17 "Olaf Hering"
18 "Arthur Teisseire"
19 "Nicolás Ojeda Bär"
20 "Christopher Zimmermann"
21 "Thomas Leonard"
22 "Antonin Décimo"
23]
24license: "ISC"
25homepage: "https://github.com/djs55/ocaml-sha"
26bug-reports: "https://github.com/djs55/ocaml-sha/issues"
27depends: [
28 "dune" {>= "2.9"}
29 "ocaml" {>= "4.02" & < "5.0"}
30 "stdlib-shims" {>= "0.3.0"}
31 "ounit2" {with-test}
32 "odoc" {with-doc}
33]
34build: [
35 ["dune" "subst"] {dev}
36 [
37 "dune"
38 "build"
39 "-p"
40 name
41 "-j"
42 jobs
43 "--promote-install-files=false"
44 "@install"
45 "@runtest" {with-test}
46 "@doc" {with-doc}
47 ]
48 ["dune" "install" "-p" name "--create-install-files" name]
49]
50dev-repo: "git+https://github.com/djs55/ocaml-sha.git"
51url {
52 src:
53 "https://github.com/djs55/ocaml-sha/releases/download/v1.15.1/sha-v1.15.1.tbz"
54 checksum: [
55 "sha256=711b63c9dbf08178229a2e85dc2e3c8fb2eb5a07cc3ba9bd5092a32a5c6fa744"
56 "sha512=6c18039bac7fb420c918217c3119f3913235e4ca1846818b6b7d6a8df24221aef32f9c6ccf1c235a499d296d76471b0709b73faf4b3c525ffbf814f96d557b66"
57 ]
58}
59x-commit-hash: "af5c7b1c7d3b8f9492038b7b40ba9cad82fb4ee8"