Skip to content

Commit

Permalink
dune-project: Make all dependencies non-build
Browse files Browse the repository at this point in the history
  • Loading branch information
liyishuai committed Sep 26, 2022
1 parent f71cf3a commit 7fa6173
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ the changes in each replica to the other.
")
(depends
(ocaml
(and :build (>= 4.08)))
(>= 4.08))
(dune
(and :build (>= 2.3)))))
(>= 2.3))))

(package
(name unison-gui)
Expand All @@ -51,11 +51,11 @@ the changes in each replica to the other.
")
(depends
(ocaml
(and :build (>= 4.08)))
(>= 4.08))
(dune
(and :build (>= 2.3)))
(>= 2.3))
(lablgtk3
(and :build (>= 3.1.0)))))
(>= 3.1.0))))

(package
(name unison-fsmonitor)
Expand All @@ -72,6 +72,6 @@ the changes in each replica to the other.
")
(depends
(ocaml
(and :build (>= 4.08)))
(>= 4.08))
(dune
(and :build (>= 2.3)))))
(>= 2.3))))
4 changes: 2 additions & 2 deletions unison-fsmonitor.opam
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ homepage: "https://www.cis.upenn.edu/~bcpierce/unison/"
doc: "https://github.com/bcpierce00/unison/wiki"
bug-reports: "https://github.com/bcpierce00/unison/issues"
depends: [
"ocaml" {build & >= "4.08"}
"dune" {build & >= "2.3"}
"ocaml" {>= "4.08"}
"dune" {>= "2.3"}
]
build: [
["dune" "subst"] {pinned}
Expand Down
6 changes: 3 additions & 3 deletions unison-gui.opam
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ homepage: "https://www.cis.upenn.edu/~bcpierce/unison/"
doc: "https://github.com/bcpierce00/unison/wiki"
bug-reports: "https://github.com/bcpierce00/unison/issues"
depends: [
"ocaml" {build & >= "4.08"}
"dune" {build & >= "2.3"}
"lablgtk3" {build & >= "3.1.0"}
"ocaml" {>= "4.08"}
"dune" {>= "2.3"}
"lablgtk3" {>= "3.1.0"}
]
build: [
["dune" "subst"] {pinned}
Expand Down
4 changes: 2 additions & 2 deletions unison.opam
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ homepage: "https://www.cis.upenn.edu/~bcpierce/unison/"
doc: "https://github.com/bcpierce00/unison/wiki"
bug-reports: "https://github.com/bcpierce00/unison/issues"
depends: [
"ocaml" {build & >= "4.08"}
"dune" {build & >= "2.3"}
"ocaml" {>= "4.08"}
"dune" {>= "2.3"}
]
build: [
["dune" "subst"] {pinned}
Expand Down

0 comments on commit 7fa6173

Please sign in to comment.