0b04dfe03c
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
9 lines
116 B
Nix
9 lines
116 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
ocaml
|
|
ocamlPackages.utop
|
|
ocamlformat
|
|
];
|
|
}
|