4 lines
134 B
Nix
4 lines
134 B
Nix
|
{ pkgs ? import <nixpkgs> {} }:
|
||
|
pkgs.mkShell {
|
||
|
nativeBuildInputs = with pkgs.buildPackages; [ elixir_1_16 git inotify-tools ];
|
||
|
}
|