this repo has no description
1opam-version: "2.0" 2maintainer: "andreas@ml.ignorelist.com" 3authors: [ "andreas@ml.ignorelist.com" ] 4license: "MIT" 5homepage: "https://github.com/fdopen/cryptohash" 6dev-repo: "git+https://github.com/fdopen/cryptohash.git" 7bug-reports: "https://github.com/fdopen/cryptohash/issues" 8build: [ 9 ["omake" "lib"] 10 ["omake" "quick-test"] {with-test} 11] 12install: [["omake" "install"]] 13remove: [ 14 ["ocamlfind" "remove" "cryptohash"] 15] 16depends: [ 17 "ocaml" {< "5.0"} 18 "base-unix" {with-test} 19 "base-bigarray" 20 "base-bytes" 21 "ocamlfind" {build} 22 "omake" {build} 23 "camlp4" {build} 24 "ounit" {with-test & >= "2.0"} 25] 26synopsis: "hash functions for OCaml" 27description: """ 28Cryptohash provides OCaml bindings to various cryptographic hash 29functions written in C""" 30flags: light-uninstall 31url { 32 src: 33 "https://github.com/fdopen/cryptohash/releases/download/0.1/cryptohash-0.1.tar.gz" 34 checksum: [ 35 "sha256=1b32321d72c7f56185f9dbed5c81a91e0b4a7cd7faeb755b31f0b3324bd552b1" 36 "md5=5eb9507779d265d32c61dc0d40e888c5" 37 ] 38}