nix/templates/elixir/nix/shells.nix
Daniel Flanagan f2ea15fa7c
All checks were successful
/ check (push) Successful in 5m10s
Elixir
2024-12-23 19:21:49 -06:00

20 lines
440 B
Nix

{
pkgs,
self,
...
}: {
elixir-dev = pkgs.mkShell {
shellHook = ''
${self.checks.${pkgs.system}.git-hooks.shellHook}
export LOCALE_ARCHIVE=/usr/lib/locale/locale-archive
'';
# inputsFrom = [self.packages.${pkgs.system}.my-package];
buildInputs = with pkgs; [
elixir
elixir-ls
inotify-tools
];
MIX_ENV = "dev";
};
default = self.outputs.devShells.${pkgs.system}.elixir-dev;
}