-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
39 lines (33 loc) · 794 Bytes
/
Copy pathflake.nix
File metadata and controls
39 lines (33 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
outputs = {
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem
(
system: let
pkgs = import nixpkgs {
inherit system;
};
erlangVersion = "erlang_27";
elixirVersion = "elixir_1_17";
elixir = pkgs.beam.packages.${erlangVersion}.${elixirVersion};
erlang = pkgs.beam.interpreters.${erlangVersion};
python = pkgs.python3;
pythonPkgs = pkgs.python3Packages;
node = pkgs.nodejs_22;
in rec {
devShells.default = pkgs.mkShell {
buildInputs = [
elixir
erlang
python
pythonPkgs.mutagen
node
];
ERL_AFLAGS = "-kernel shell_history enabled";
};
}
);
}