summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bin/dune3
-rw-r--r--dune-project4
-rw-r--r--flake.nix1
3 files changed, 7 insertions, 1 deletions
diff --git a/bin/dune b/bin/dune
index d802869..87b4f4e 100644
--- a/bin/dune
+++ b/bin/dune
@@ -1,4 +1,5 @@
1(executable 1(executable
2 (public_name sand) 2 (public_name sand)
3 (name main) 3 (name main)
4 (libraries sand)) 4 (libraries sand)
5 (modes exe byte))
diff --git a/dune-project b/dune-project
index b7399d2..cc3ce88 100644
--- a/dune-project
+++ b/dune-project
@@ -4,6 +4,10 @@
4 4
5(generate_opam_files true) 5(generate_opam_files true)
6 6
7; Needed to generate correct debug information.
8; See https://dune.readthedocs.io/en/stable/dune-files.html#stanza-map_workspace_root
9(map_workspace_root false)
10
7(source 11(source
8 (github username/reponame)) 12 (github username/reponame))
9 13
diff --git a/flake.nix b/flake.nix
index bcd9ed1..6fdf260 100644
--- a/flake.nix
+++ b/flake.nix
@@ -14,6 +14,7 @@
14 localPackagesQuery = builtins.mapAttrs (_: pkgs.lib.last) 14 localPackagesQuery = builtins.mapAttrs (_: pkgs.lib.last)
15 (on.listRepo (on.makeOpamRepo ./.)); 15 (on.listRepo (on.makeOpamRepo ./.));
16 devPackagesQuery = { 16 devPackagesQuery = {
17 earlybird = "*";
17 ocaml-lsp-server = "*"; 18 ocaml-lsp-server = "*";
18 ocamlformat = "*"; 19 ocamlformat = "*";
19 utop = "*"; 20 utop = "*";