this repo has no description
1opam-version: "2.0" 2maintainer: "dave@recoil.org" 3authors: [ 4"Vincent Hanquez" "Thomas Gazagnaire" "Goswin von Brederlow" 5 "Eric Cooper" "Florent Monnier" "Forrest L Norvell" 6 "Vincent Bernadoff" "David Scott" 7] 8homepage: "https://github.com/djs55/ocaml-sha" 9bug-reports: "https://github.com/djs55/ocaml-sha/issues" 10dev-repo: "git+https://github.com/djs55/ocaml-sha.git" 11license: "LGPL-2.0-or-later" 12 13build: make 14install: [make "install"] 15remove: [["ocamlfind" "remove" "sha"]] 16 17depends: [ 18 "ocaml" {>= "4.02.0" & < "5.0"} 19 "ocamlfind" 20] 21synopsis: "Binding to the SHA cryptographic functions" 22description: """ 23This is the binding for SHA interface code in OCaml. Offering the same 24interface than the MD5 digest included in the OCaml standard library. 25It's currently providing SHA1, SHA256 and SHA512 hash functions.""" 26flags: light-uninstall 27url { 28 src: "https://github.com/djs55/ocaml-sha/archive/v1.10.tar.gz" 29 checksum: [ 30 "sha256=af8f1bde62969d0823ddf158168f188470fc02e8ce63d71c4c6f8cf172d1ee37" 31 "md5=b8e59c2ce721a1937ea37cdade2742b8" 32 ] 33} 34extra-source "freebsd.patch" { 35 src: 36 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/sha/freebsd.patch" 37 checksum: [ 38 "sha256=78ac57adf0a3c412946d586b8779f54926f99d62ea42466eb6ed754e49666164" 39 "md5=c15c8e11d085c8a632e0d742459f2783" 40 ] 41}