this repo has no description
1opam-version: "2.0" 2maintainer: "essdotteedot <essdotteedot@gmail.com>" 3authors: [ "essdotteedot <essdotteedot@gmail.com>" ] 4license: "MIT" 5homepage: "https://github.com/essdotteedot/distributed" 6dev-repo: "git+https://github.com/essdotteedot/distributed.git" 7bug-reports: "https://github.com/essdotteedot/distributed/issues" 8doc: "https://essdotteedot.github.io/distributed/" 9 10build: [ 11 ["dune" "build" "-p" name "-j" jobs] 12] 13 14depends: [ 15 "dune" {>= "1.11.0"} 16 "base-unix" 17 "ocaml" {>= "4.02.3" & < "5.0"} 18] 19 20synopsis: "Library to provide Erlang style distributed computations. This library is inspired by Cloud Haskell" 21 22description: """ 23Primitive for spawning processes (in the Erlang sense) either remotely or locally, monitoring/unmonitoring spawned processes, sending, 24receiving, broadcasting messages to those processes. Unlike Erlang, the messages that are sent between processes are typed. 25""" 26url { 27 src: "https://github.com/essdotteedot/distributed/archive/v0.6.0.tar.gz" 28 checksum: [ 29 "md5=c7fe69990324309299fe4ad90a738866" 30 "sha512=d1c2bd6a5f11dab70bc74178f9fafe2a36a697313f52bf2bce7b263ac2c9e0930f367c34bcd74ebfe8c56b269f03b6f6ac7c0738ee0e81d752658a831b559c05" 31 ] 32}