diff options
author | William Carroll <wpcarro@gmail.com> | 2022-10-10T22·25-0700 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-10-10T22·35+0000 |
commit | 0b04dfe03ca380bd234d90efa4f98d76732305f2 (patch) | |
tree | 7d50b6f922c5d04fb38a23fc046097a9220c7f31 /users/wpcarro/scratch/compiler/shell.nix | |
parent | 019ea51e5c7777d49fa835260b7ce62d77430b3b (diff) |
feat(wpcarro/scratch): Rewrite Python compiler in OCaml r/5093
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
Diffstat (limited to 'users/wpcarro/scratch/compiler/shell.nix')
-rw-r--r-- | users/wpcarro/scratch/compiler/shell.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/users/wpcarro/scratch/compiler/shell.nix b/users/wpcarro/scratch/compiler/shell.nix new file mode 100644 index 000000000000..ec339eb91d98 --- /dev/null +++ b/users/wpcarro/scratch/compiler/shell.nix @@ -0,0 +1,9 @@ +{ pkgs, ... }: + +pkgs.mkShell { + buildInputs = with pkgs; [ + ocaml + ocamlPackages.utop + ocamlformat + ]; +} |