first commit

This commit is contained in:
pena 2024-07-11 12:32:38 +02:00
commit 1be272e3e7
10 changed files with 1380 additions and 0 deletions

14
shell.nix Normal file
View file

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