about summary refs log tree commit diff
path: root/users/wpcarro/scratch/compiler/shell.nix
blob: ec339eb91d98a692d030923a20ab190505028fe8 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ pkgs, ... }:

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