this repo has no description
1opam-version: "2.0" 2maintainer: "rvantonder@gmail.com" 3authors: "Facebook hackers" 4homepage: "https://github.com/rvantonder/hack-parallel" 5bug-reports: "https://github.com/rvantonder/hack-parallel/issues" 6dev-repo: "git+https://github.com/rvantonder/hack-parallel.git" 7license: "MIT" 8build: [ 9 [make "libhp.a"] 10 ["dune" "build" "-p" name "-j" jobs "@install"] 11] 12depends: [ 13 "core" 14 "ocaml" {>= "4.03.0"} 15 "ppx_deriving" 16 "ppxlib" {< "0.9.0"} 17 "sexplib" 18] 19synopsis: "Parallel and shared memory library" 20description: """ 21Parallel and shared memory components used in Facebook's Hack, Flow, and Pyre 22projects. 23""" 24url { 25 src: "https://github.com/rvantonder/hack-parallel/archive/v0.1.1.tar.gz" 26 checksum: [ 27 "sha256=1b8e55ff68367b8f04baa933a11bbd58e616ec451e836a16ef2c99085d37f41a" 28 "md5=64485d8a2bad2751cb31255bc1be33b7" 29 ] 30} 31available: os != "openbsd"