Skip to content

Commit 70df96a

Browse files
committed
onix: add onix project structure
1 parent 9637195 commit 70df96a

File tree

3 files changed

+1860
-0
lines changed

3 files changed

+1860
-0
lines changed

default.nix

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
let
2+
onix = import (builtins.fetchGit {
3+
url = "https://github.com/rizo/onix.git";
4+
rev = "1a67fe51d4d1676f38088e635a00dfdae5bae70b";
5+
}) { verbosity = "info"; };
6+
7+
in onix.env {
8+
path = ./.;
9+
vars = {
10+
"with-test" = true;
11+
"with-doc" = true;
12+
"with-dev-setup" = true;
13+
};
14+
deps = { "ocaml-base-compiler" = "5.1.0"; };
15+
}

0 commit comments

Comments
 (0)