this repo has no description
1opam-version: "2.0" 2maintainer: "andreashauptmann@t-online.de" 3authors: [ "andreashauptmann@t-online.de" ] 4license: "MIT" 5homepage: "https://github.com/fdopen/cryptohash" 6dev-repo: "git+https://github.com/fdopen/cryptohash" 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 "ounit" {with-test & >= "2.0"} 24] 25synopsis: "hash functions for OCaml" 26description: """ 27Cryptohash provides OCaml bindings to various cryptographic hash 28functions written in C""" 29flags: light-uninstall 30url { 31 src: 32 "https://github.com/fdopen/cryptohash/releases/download/0.1.1/cryptohash-0.1.1.tar.gz" 33 checksum: [ 34 "sha256=7eb37240eafb4ae6380e0d2fb517d3dc7e4a3a1a729f3309fba45c8f52e30519" 35 "md5=c51f3be13b42901b6627ff1238bf365f" 36 ] 37}