forked from bcpierce00/unison
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dune-project
76 lines (61 loc) · 1.93 KB
/
dune-project
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
(lang dune 2.3)
(name unison)
(version dev)
(generate_opam_files false)
(license GPL-3.0-or-later)
(maintainers "[email protected]")
(authors "Trevor Jim" "Benjamin C. Pierce" "J\195\169r\195\180me Vouillon")
(source
(github bcpierce00/unison))
(homepage https://www.cis.upenn.edu/~bcpierce/unison/)
(documentation "https://github.com/bcpierce00/unison/wiki")
(package
(name unison)
(synopsis "File-synchronization tool for Unix and Windows")
(description "\
Text based user interface for Unison.
Unison is a file-synchronization tool for Unix and Windows.
It allows two replicas of a collection of files and directories
to be stored on different hosts (or different disks on the same host),
modified separately, and then brought up to date by propagating
the changes in each replica to the other.
")
(depends
(ocaml
(>= 4.08))
(dune
(>= 2.3))))
(package
(name unison-gui)
(synopsis "File-synchronization tool for Unix and Windows")
(description "\
Graphical user interface for Unison.
Unison is a file-synchronization tool for Unix and Windows.
It allows two replicas of a collection of files and directories
to be stored on different hosts (or different disks on the same host),
modified separately, and then brought up to date by propagating
the changes in each replica to the other.
")
(depends
(ocaml
(>= 4.08))
(dune
(>= 2.3))
lablgtk))
(package
(name unison-fsmonitor)
(synopsis "File-synchronization tool for Unix and Windows")
(description "\
This optional add-on for unison monitors file system changes
on all given (relative to root) paths.
Unison is a file-synchronization tool for Unix and Windows.
It allows two replicas of a collection of files and directories
to be stored on different hosts (or different disks on the same host),
modified separately, and then brought up to date by propagating
the changes in each replica to the other.
")
(depends
(ocaml
(>= 4.08))
(dune
(>= 2.3))))