-
Notifications
You must be signed in to change notification settings - Fork 23
/
cuekeeper.opam
48 lines (48 loc) · 1.36 KB
/
cuekeeper.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
opam-version: "2.0"
name: "cuekeeper"
synopsis: "Web-based GTD system with Git-based history"
maintainer: "Thomas Leonard <talex5@gmail.com>"
authors: "Thomas Leonard <talex5@gmail.com>"
license: "GNU LESSER GENERAL PUBLIC LICENSE, v2.1"
homepage: "https://github.com/talex5/cuekeeper"
bug-reports: "https://github.com/talex5/cuekeeper/issues"
depends: [
"ocaml" {>= "4.07"}
"sexplib" {>= "v0.13.0"}
"uuidm"
"irmin"
"tyxml" {>= "4.3.0"}
"reactiveData" {>= "0.2"}
"js_of_ocaml" {>= "3.0.0"}
"js_of_ocaml-tyxml"
"omd"
"fmt"
"logs"
"irmin-mem" {with-test}
"ounit" {with-test}
"tar"
"cohttp"
"cohttp-lwt-jsoo"
"irmin-indexeddb" {>= "1.3"}
"crunch" {build}
"ppx_sexp_conv"
"lwt"
"cstruct" {>= "4.0.0"}
"ppx_deriving"
"dune" {>= "1.11.0"}
]
pin-depends: [
["irmin-git.1.4.0" "git+https://github.com/talex5/irmin.git#dedb0dd44b70806b1ab68c666c140c27caebe1c2"]
["irmin-indexeddb.1.3" "git+https://github.com/talex5/irmin-indexeddb.git#c13c3e489af66868ddd86be37c958e56375db43b"]
]
build: [
[make "client"]
[make "test"] {with-test}
[make "slow_test"] {with-test}
]
dev-repo: "git+https://github.com/talex5/cuekeeper.git"
description: """
CueKeeper is a web-based GTD system (a fancy TODO list) that runs entirely in
your browser (the data is stored on your computer, in your browser). It uses
Irmin to keep a full history of all updates.
"""