this repo has no description
1opam-version: "2.0"
2maintainer: "Nikolay Zalutskiy <pacemkr@gmail.com>"
3authors: ["Nikolay Zalutskiy <pacemkr@gmail.com>"]
4homepage: "https://github.com/constfun/ocaml-scrypt"
5doc: "https://constfun.github.io/ocaml-scrypt/"
6dev-repo: "git+https://github.com/constfun/ocaml-scrypt.git"
7bug-reports: "https://github.com/constfun/ocaml-scrypt/issues"
8license: "BSD-2-Clause"
9build: make
10remove: [
11 ["ocamlfind" "remove" "scrypt"]
12]
13depends: ["ocaml" "ocamlfind" "conf-libssl"]
14patches: [
15 "no-ctypes-dependency.patch"
16]
17install: [make "install"]
18available: os != "macos"
19synopsis:
20 "C bindings and a high level interface to the official scrypt distribution."
21description: """
22scrypt is key derivation function designed to be far more secure against hardware brute-force attacks than alternative functions such as PBKDF2 or bcrypt.
23
24scrypt was originally developed by Colin Percival for use in the Tarnsnap online backup system.
25
26More information can be found at https://www.tarsnap.com/scrypt.html"""
27flags: light-uninstall
28url {
29 src: "https://github.com/constfun/ocaml-scrypt/archive/v0.2.1.tar.gz"
30 checksum: [
31 "sha256=7db58b546689d60ecf79be6fd9ca5be11de573ea94c404626fc6412f1ff22693"
32 "md5=4e0b272f5438be475dc5ff5e851d9837"
33 ]
34}
35extra-source "no-ctypes-dependency.patch" {
36 src:
37 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/scrypt/no-ctypes-dependency.patch"
38 checksum: [
39 "sha256=1eba69d0ff3c8b9a7985f6c73cd579ea2c0e8e43c527c8e442945129c03998ac"
40 "md5=8e78eebac9e9168468a7431b69cbce87"
41 ]
42}