ai-lab2/shell.nix
2025-11-06 23:43:22 +03:00

19 lines
293 B
Nix

{ pkgs ? import <nixpkgs> {
config.allowUnfree = true;
}
}:
let
beam = pkgs.beam.packages.erlang_28;
in
pkgs.mkShell {
buildInputs = [
beam.erlang
beam.elixir_1_19
pkgs.mystem
pkgs.swi-prolog
];
ERL_AFLAGS = "-kernel shell_history enabled";
}