this repo has no description
1opam-version: "2.0" 2maintainer: "Louis Roché <louis@louisroche.net>" 3authors: "Louis Roché <louis@louisroche.net>" 4homepage: "https://github.com/Khady/ocaml-argon2" 5dev-repo: "git+https://github.com/Khady/ocaml-argon2.git" 6bug-reports: "https://github.com/Khady/ocaml-argon2/issues" 7doc: "https://khady.github.io/ocaml-argon2/" 8license: "MIT" 9depends: [ 10 "ocaml" {>= "4.02.3"} 11 "dune" {>= "2.0"} 12 "ctypes" {>= "0.4.1"} 13 "ctypes-foreign" 14 "result" 15 "odoc" {with-doc} 16] 17build: [ 18 ["dune" "subst"] {dev} 19 ["dune" "build" "-p" name "-j" jobs "@install" "@doc" {with-doc}] 20] 21synopsis: "OCaml bindings to Argon2" 22description: """ 23Based on argon2 library as described in https://github.com/P-H-C/phc-winner-argon2. 24 25libargon2 must be installed on your system for this library to work. 26""" 27url { 28 src: 29 "https://github.com/Khady/ocaml-argon2/releases/download/1.0.0/argon2-1.0.0.tbz" 30 checksum: [ 31 "sha256=2faf327a25b4d3df1557ed8c0b05431a6ccdf056ab2a977d7d944445a62f020f" 32 "sha512=cb74864d9f5c4929ef108019a199f911545b130e25983fbcc765967467e409742994e605b0c9e8c81f8da94abaa7380888ee80dba726a834162656c7795bc4bf" 33 ] 34}