drame/shell.nix

28 lines
436 B
Nix
Raw Normal View History

2024-01-04 16:59:51 +01:00
{ pkgs ? import (builtins.fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/master.tar.gz";
}) {}
}:
pkgs.mkShell {
2026-03-08 17:45:32 +01:00
nativeBuildInputs = with pkgs.ocamlPackages; [
2024-01-04 16:59:51 +01:00
dune_3
findlib
merlin
ocaml
ocamlformat
odoc
2026-03-08 17:45:32 +01:00
ocp-browser
2024-01-04 16:59:51 +01:00
];
2026-03-08 17:45:32 +01:00
buildInputs = with pkgs.ocamlPackages; [
2024-01-04 16:59:51 +01:00
httpcats
js_of_ocaml-compiler
miou
ptime
htmlit
scfg
uri
uuidm
directories
];
}