Updated nix shell file
Some checks failed
test / test (push) Has been cancelled

This commit is contained in:
Mrrp 2024-12-12 19:16:42 -08:00
parent fe9a300dc5
commit 1f996cb8b8

View file

@ -3,5 +3,14 @@ let
pkgs = import (fetchTarball("https://github.com/NixOS/nixpkgs/archive/8b27c1239e5c421a2bbc2c65d52e4a6fbf2ff296.tar.gz")) {}; pkgs = import (fetchTarball("https://github.com/NixOS/nixpkgs/archive/8b27c1239e5c421a2bbc2c65d52e4a6fbf2ff296.tar.gz")) {};
in pkgs.mkShell { 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
];
} }