-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f9de744
commit da71893
Showing
1 changed file
with
13 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,13 +10,19 @@ Use this `duniverse` fork: https://github.com/snowleopard/duniverse. | |
git clone https://github.com/janestreet/universe | ||
cd universe | ||
duniverse init | ||
# Install dependencies that can't be built by Dune | ||
duniverse opam-install | ||
duniverse pull | ||
# Fix conflicts with installed libraries | ||
rm -rf duniverse/zarith* duniverse/uuseg* duniverse/uucp* duniverse/uutf* duniverse/seq* | ||
# Work around the ctypes issue | ||
opam install ctypes-foreign | ||
# Manually pull in a version of cryptokit that can be built with Dune | ||
(cd duniverse; git clone -b dune-universe-v1.14 [email protected]:snowleopard/cryptokit.git) | ||
# Install notty manually, which also pulls in ocb-stubblr, uucp and uuseg | ||
opam install notty | ||
rm -rf duniverse/uuseg* duniverse/uucp* duniverse/uutf* | ||
# Install inotify manually | ||
opam install inotify | ||
# Install pyml manually, which also pulls in stdcompat that conflicts with seq | ||
opam install pyml | ||
rm -rf duniverse/seq* | ||
# Work around ctypes issue (this also pulls in integers) | ||
opam install ctypes ctypes-foreign | ||
rm -rf duniverse/ctypes* duniverse/integers* | ||
``` | ||
|
||
|
@@ -85,3 +91,4 @@ empty. | |
* https://github.com/janestreet/universe/commit/cfbb13d96b1e8184475a5fad963ef4ded073ccc3 | ||
* https://github.com/janestreet/universe/commit/32e12986b2ecc4e80b767ebe180c464805007f69 | ||
* https://github.com/janestreet/universe/commit/a75b75140b03f3793bb134476679819cc5f95d45 | ||
* https://github.com/janestreet/universe/commit/f9de744e6117f247a338f26241b11b9cd989ba7c |