Skip to content

Commit 22b13a6

Browse files
committed
Add onix-based flake, associated make task, and .envrc template
1 parent dd3a90d commit 22b13a6

6 files changed

+1065
-0
lines changed

.envrc.tmpl

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# rebuild the environment on `nix-direnv-reload` only
2+
nix_direnv_manual_reload
3+
4+
# direnv will consider the environment changed if these files change, and
5+
# nix-direnv will then prompt for the manual reload
6+
watch_file flake.nix flake.lock onix-lock.json onix-lock-dev.json
7+
8+
# use the flake with the `default` devShell:
9+
use flake
10+
11+
# To use another devShell, you can use (e.g. for devShell.other:
12+
# use flake .#other
13+

Makefile

+6
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,9 @@ clean:
66

77
watch:
88
@dune build @all -w
9+
10+
onix-lock:
11+
onix lock ./imandra-document.opam --resolutions="ocaml-system=5.2.0" --lock-file ./onix-lock.json
12+
onix lock ./imandra-document.opam --resolutions="ocaml-system=5.2.0,ocaml-lsp-server" --with-test=true --lock-file ./onix-lock-dev.json
13+
git add onix-lock.json onix-lock-dev.json
14+

flake.lock

+97
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
inputs = {
3+
nixpkgs.url = "nixpkgs/nixpkgs-unstable";
4+
flake-utils.url = "github:numtide/flake-utils";
5+
6+
onix.url = "github:rizo/onix";
7+
onix.inputs.nixpkgs.follows = "nixpkgs";
8+
};
9+
10+
outputs = { self, nixpkgs, flake-utils, onix }@inputs:
11+
flake-utils.lib.eachDefaultSystem (system:
12+
let
13+
pkgs = nixpkgs.legacyPackages.${system};
14+
onix' = onix.packages.${system}.latest;
15+
opamFiles = [
16+
./imandra-document.opam
17+
];
18+
onixEnv = onix'.env {
19+
path = ./.;
20+
roots = opamFiles;
21+
lock = ./onix-lock.json;
22+
deps = { "ocaml-system" = "*"; };
23+
};
24+
onixEnvDev = onix'.env {
25+
path = ./.;
26+
roots = opamFiles;
27+
lock = ./onix-lock-dev.json;
28+
deps = {
29+
"ocaml-system" = "*";
30+
"ocaml-lsp-server" = "*";
31+
};
32+
};
33+
34+
in rec {
35+
formatter = pkgs.nixfmt-rfc-style;
36+
37+
packages.imandra-document = onixEnv.pkgs.imandra-document;
38+
39+
devShells.onixLock = pkgs.mkShell {
40+
buildInputs = [
41+
onix'
42+
];
43+
};
44+
45+
devShells.default = onixEnvDev.shell.overrideAttrs (final: prev: {
46+
buildInputs = prev.buildInputs ++ [
47+
pkgs.ocamlformat_0_22_4
48+
pkgs.dune_3
49+
pkgs.ocaml
50+
onix'
51+
];
52+
});
53+
54+
packages.dev-shell = devShells.default.inputDerivation;
55+
});
56+
}

0 commit comments

Comments
 (0)