-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathi3ipc.opam
29 lines (29 loc) · 835 Bytes
/
i3ipc.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
opam-version: "2.0"
name: "i3ipc"
version: "dev"
maintainer: "[email protected]"
authors: [ "Armaël Guéneau" ]
license: "MIT"
homepage: "https://github.com/Armael/ocaml-i3ipc"
bug-reports: "https://github.com/Armael/ocaml-i3ipc/issues"
dev-repo: "https://github.com/Armael/ocaml-i3ipc"
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "build" "@doc"] {with-doc}
]
depends: [
"ocaml" {>= "4.03.0"}
"lwt"
"lwt_ppx"
"dune" {>= "1.0"}
"odoc" {with-doc}
"ppx_deriving" {>= "4.2"}
"ppx_deriving_yojson" {>= "3.2"}
"result"
"stdint"
]
tags: [ "i3" "ipc" "window-manager" ]
synopsis: "A pure OCaml implementation of the i3 IPC protocol"
description: """
This library allows you to communicate with a running instance of i3, run
commands, query information about the state of the WM, and subscribe to events."""