Initial working commit

This commit is contained in:
2025-11-26 21:12:08 +03:00
commit 4709e81b81
9 changed files with 312 additions and 0 deletions

14
shell.nix Normal file
View File

@@ -0,0 +1,14 @@
{pkgs ? import <nixpkgs> {}} :
pkgs.mkShell {
buildInputs = with pkgs; [
ocaml
ocamlPackages.findlib
ocamlPackages.ocamlfuse
ocamlPackages.ocaml-lsp
ocamlPackages.ocamlformat
ocamlPackages.merlin
ocamlPackages.utop
dune_3
];
}