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