27 lines
436 B
Nix
27 lines
436 B
Nix
{ pkgs ? import (builtins.fetchTarball {
|
|
url = "https://github.com/NixOS/nixpkgs/archive/master.tar.gz";
|
|
}) {}
|
|
}:
|
|
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs.ocamlPackages; [
|
|
dune_3
|
|
findlib
|
|
merlin
|
|
ocaml
|
|
ocamlformat
|
|
odoc
|
|
ocp-browser
|
|
];
|
|
buildInputs = with pkgs.ocamlPackages; [
|
|
httpcats
|
|
js_of_ocaml-compiler
|
|
miou
|
|
ptime
|
|
htmlit
|
|
scfg
|
|
uri
|
|
uuidm
|
|
directories
|
|
];
|
|
}
|