Starlight/shell.nix
Seven Of Aces 1f996cb8b8
Some checks failed
test / test (push) Has been cancelled
Updated nix shell file
2024-12-12 19:16:42 -08:00

16 lines
No EOL
363 B
Nix

let
# Pinned nixpkgs, 24.11
pkgs = import (fetchTarball("https://github.com/NixOS/nixpkgs/archive/8b27c1239e5c421a2bbc2c65d52e4a6fbf2ff296.tar.gz")) {};
in pkgs.mkShell {
buildInputs = [
# Rust tooling
pkgs.cargo pkgs.rustc
# Workflow tools
pkgs.act
# System libraries needed
pkgs.pkg-config
pkgs.alsa-lib
pkgs.udev
];
}