diff --git a/shell.nix b/shell.nix index be0c83f..f7556e2 100644 --- a/shell.nix +++ b/shell.nix @@ -2,13 +2,16 @@ { pkgs ? import {} }: pkgs.mkShell { - nativeBuildInputs = with pkgs.buildPackages; [ - clang - yarn nodejs - openssl - python3 - python3Packages.requests - python3Packages.ipython + name = "kalkutago"; + nativeBuildInputs = with pkgs.buildPackages; [ + clang + yarn nodejs + openssl + python3 + python3Packages.requests + python3Packages.ipython + rustup + docker + gnumake ]; } -