this repo has no description
1opam-version: "2.0" 2maintainer: "armael@isomorphis.me" 3authors: "Armaël Guéneau" 4homepage: "https://github.com/Armael/ocaml-i3ipc" 5bug-reports: "https://github.com/Armael/ocaml-i3ipc/issues" 6license: "MIT" 7tags: ["i3" "ipc" "window-manager"] 8dev-repo: "git+https://github.com/Armael/ocaml-i3ipc" 9doc: "https://armael.github.io/ocaml-i3ipc/0.4/" 10build: [ 11 ["dune" "build" "-p" name "-j" jobs] 12] 13depends: [ 14 "ocaml" {>= "4.03.0"} 15 "lwt" 16 "lwt_ppx" 17 "dune" {>= "1.0"} 18 "ppx_deriving" {>= "4.2"} 19 "ppx_deriving_yojson" {>= "3.2"} 20 "result" 21 "stdint" 22] 23synopsis: "A pure OCaml implementation of the i3 IPC protocol" 24description: """ 25This library allows you to communicate with a running instance of i3, run 26commands, query information about the state of the WM, and subscribe to events.""" 27url { 28 src: "https://github.com/Armael/ocaml-i3ipc/archive/v0.4.tar.gz" 29 checksum: "sha256=35b2370da44a551b5568adb019ed2fd7fa85ea89851a446e733c247f5fa836fb" 30}