From cd6934cda5672a697ef8c7f646f9cf5b44b70b28 Mon Sep 17 00:00:00 2001 From: Henrik Friedrichsen Date: Sat, 15 Mar 2025 20:04:18 +0100 Subject: [PATCH] feat(ci): Add nix-shell setup --- shell.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..217df1d --- /dev/null +++ b/shell.nix @@ -0,0 +1,11 @@ +{ + pkgs ? import { }, +}: +pkgs.mkShell { + nativeBuildInputs = with pkgs.buildPackages; [ + rustup + pkg-config + openssl + pulseaudio + ]; +}