From 2d87c3bcd0565e3a44d0b94a5e8c6dca2fcd7027 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20D=E2=80=99Aquino?= Date: Fri, 23 Aug 2024 14:30:27 -0700 Subject: [PATCH] Add more build tools to shell.nix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Daniel D’Aquino --- shell.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 56c703b..627559f 100644 --- a/shell.nix +++ b/shell.nix @@ -1,5 +1,10 @@ { pkgs ? import {} }: pkgs.mkShell { - buildInputs = [ pkgs.websocat ]; + buildInputs = [ + pkgs.cargo + pkgs.openssl + pkgs.pkg-config + pkgs.websocat + ]; }