Elixir flake cleanup
This commit is contained in:
parent
69de429142
commit
88f7482f22
|
@ -49,11 +49,16 @@
|
||||||
devShells = forAllSystems (system: let
|
devShells = forAllSystems (system: let
|
||||||
pkgs = nixpkgsFor system;
|
pkgs = nixpkgsFor system;
|
||||||
erlang = pkgs.beam.packages.erlang_26;
|
erlang = pkgs.beam.packages.erlang_26;
|
||||||
elixir = erlang.elixir_1_15;
|
elixir = erlang.elixir_1_16;
|
||||||
in {
|
in {
|
||||||
default = pkgs.mkShell {
|
default = pkgs.mkShell {
|
||||||
shellHook = "export LOCALE_ARCHIVE=/usr/lib/locale/locale-archive";
|
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