From ffc1c6806a558ee66cda3c55c0df3ae20ae0846d Mon Sep 17 00:00:00 2001 From: "D. Scott Boggs" Date: Thu, 24 Aug 2023 13:10:20 -0400 Subject: [PATCH] Fix shell.nix --- shell.nix | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) 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 ]; } -