drame/shell.nix
2026-04-05 02:32:58 +02:00

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
];
}