first commit

This commit is contained in:
pena 2019-05-07 18:57:32 +02:00
commit f8f05a731b
15 changed files with 423 additions and 0 deletions

14
shell.nix Normal file
View file

@ -0,0 +1,14 @@
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.ocamlPackages; [
dune_3
findlib
merlin
ocaml
ocamlformat
odoc
];
buildInputs = with pkgs.ocamlPackages; [
];
}