about summary refs log tree commit diff
path: root/users/wpcarro/scratch/compiler/shell.nix
{ pkgs, ... }:

pkgs.mkShell {
  buildInputs = with pkgs; [
    ocaml
    ocamlPackages.utop
    ocamlformat
  ];
}