Elixir flake cleanup
This commit is contained in:
parent
69de429142
commit
88f7482f22
1 changed files with 7 additions and 2 deletions
|
@ -49,11 +49,16 @@
|
|||
devShells = forAllSystems (system: let
|
||||
pkgs = nixpkgsFor system;
|
||||
erlang = pkgs.beam.packages.erlang_26;
|
||||
elixir = erlang.elixir_1_15;
|
||||
elixir = erlang.elixir_1_16;
|
||||
in {
|
||||
default = pkgs.mkShell {
|
||||
shellHook = "export LOCALE_ARCHIVE=/usr/lib/locale/locale-archive";
|
||||
buildInputs = [erlang elixir pkgs.elixir-ls];
|
||||
buildInputs = with pkgs; [
|
||||
erlang_26
|
||||
erlang
|
||||
elixir-ls
|
||||
elixir
|
||||
];
|
||||
};
|
||||
});
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue