memo/shell.nix

15 lines
222 B
Nix
Raw Normal View History

2019-05-07 18:57:32 +02:00
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.ocamlPackages; [
dune_3
findlib
merlin
ocaml
ocamlformat
odoc
];
buildInputs = with pkgs.ocamlPackages; [
];
}