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" 8 9build: [ 10 ["jbuilder" "subst" "-p" name] {dev} 11 ["jbuilder" "build" "-p" name "-j" jobs] 12] 13 14depends: [ 15 "ocaml" {>= "4.02.3" & < "5.0"} 16 "jbuilder" {>= "1.0+beta16"} 17 "base-unix" 18] 19synopsis: 20 "Library to provide Erlang style distributed computations. This library is inspired by Cloud Haskell." 21description: """ 22Primitive for spawning processes (in the Erlang sense) either remotely or locally, monitoring/unmonitoring spawned processes, sending, 23receiving, broadcasting messages to those processes. Unlike Erlang, the messages that are sent between processes are typed.""" 24url { 25 src: "https://github.com/essdotteedot/distributed/archive/v0.5.0.tar.gz" 26 checksum: [ 27 "sha256=e60a275e18c8fdc6ac6005af42f56d76d6d39222c12ab60617417925f3793625" 28 "md5=158919cc350bfb668e12ec8367b8f7c7" 29 ] 30}