this repo has no description
1opam-version: "2.0" 2maintainer: [ "Eyyüb Sari <eyyub.sari@epitech.eu>" 3 "Romain Calascibetta <romain.calascibetta@gmail.com>" ] 4authors: [ "Eyyüb Sari <eyyub.sari@epitech.eu>" 5 "Romain Calascibetta <romain.calascibetta@gmail.com>" ] 6homepage: "https://github.com/mirage/digestif" 7bug-reports: "https://github.com/mirage/digestif/issues" 8dev-repo: "git+https://github.com/mirage/digestif.git" 9doc: "https://mirage.github.io/digestif/" 10license: "MIT" 11synopsis: "Hashes implementations (SHA*, RIPEMD160, BLAKE2* and MD5)" 12description: """ 13Digestif is a toolbox to provide hashes implementations in C and OCaml. 14 15It uses the linking trick and user can decide at the end to use the C implementation or the OCaml implementation. 16 17We provides implementation of: 18 * MD5 19 * SHA1 20 * SHA224 21 * SHA256 22 * SHA384 23 * SHA512 24 * WHIRLPOOL 25 * BLAKE2B 26 * BLAKE2S 27 * RIPEMD160 28""" 29 30build: [ 31 [ "dune" "build" "-p" name "-j" jobs ] 32 [ "sh" "-exc" "echo \"xen_linkopts = \\\"-l:rakia/xen/librakia_xen_stubs.a\\\"\" >> _build/default/META.digestif"] 33 [ "sh" "-exc" "echo \"freestanding_linkopts = \\\"-l:rakia/freestanding/librakia_freestanding_stubs.a\\\"\" >> _build/default/META.digestif"] 34] 35run-test: [ "dune" "runtest" "-p" name "-j" jobs ] 36 37depends: [ 38 "ocaml" {>= "4.03.0"} 39 "dune" {>= "1.9.2" & < "2.6"} 40 "eqaf" 41 "base-bytes" 42 "bigarray-compat" 43 "stdlib-shims" 44 "fmt" {with-test} 45 "alcotest" {with-test & < "1.0.0"} 46] 47 48depopts: [ 49 "ocaml-freestanding" 50 "mirage-xen-posix" 51] 52 53conflicts: [ 54 "mirage-xen-posix" {< "3.1.0"} 55 "ocaml-freestanding" {< "0.4.3"} 56] 57url { 58 src: 59 "https://github.com/mirage/digestif/releases/download/v0.8.0/digestif-v0.8.0.tbz" 60 checksum: [ 61 "sha256=9e35599404f1cbbb74beeaefc38e1fbf333e0ca84437b4256527f1889ffde425" 62 "sha512=ce2ebccaae85c15c26781dc7101403e0e09cfe01d76bf9c5e298bd408257c5cc2c06d46481dfe3cfa87ec98e8065874a213960582b4e0e218447c851fc175ec4" 63 ] 64} 65available: [ arch != "s390x" ]