memo/shell.nix
2026-03-17 00:18:44 +01:00

14 lines
222 B
Nix

{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.ocamlPackages; [
dune_3
findlib
merlin
ocaml
ocamlformat
odoc
];
buildInputs = with pkgs.ocamlPackages; [
];
}