From 1f996cb8b8f221fcc5cae0d31d505df57052c1b9 Mon Sep 17 00:00:00 2001 From: Seven Of Aces Date: Thu, 12 Dec 2024 19:16:42 -0800 Subject: [PATCH] Updated nix shell file --- shell.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index f1f2b04..d3eff27 100644 --- a/shell.nix +++ b/shell.nix @@ -3,5 +3,14 @@ let pkgs = import (fetchTarball("https://github.com/NixOS/nixpkgs/archive/8b27c1239e5c421a2bbc2c65d52e4a6fbf2ff296.tar.gz")) {}; in pkgs.mkShell { - buildInputs = [ pkgs.cargo pkgs.rustc pkgs.act ]; + buildInputs = [ + # Rust tooling + pkgs.cargo pkgs.rustc + # Workflow tools + pkgs.act + # System libraries needed + pkgs.pkg-config + pkgs.alsa-lib + pkgs.udev + ]; } \ No newline at end of file