tvl-depot/users/wpcarro/scratch/compiler/shell.nix
William Carroll 0b04dfe03c feat(wpcarro/scratch): Rewrite Python compiler in OCaml
Just to see how productive I could be in OCaml with little familiarity. Overall
I really like it.

Change-Id: I8affc65a5ee86a29d4f8c01426529ae9948660f9
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6934
Reviewed-by: wpcarro <wpcarro@gmail.com>
Autosubmit: wpcarro <wpcarro@gmail.com>
Tested-by: BuildkiteCI
2022-10-10 22:35:26 +00:00

9 lines
116 B
Nix

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