feat(ci): Add nix-shell setup

This commit is contained in:
Henrik Friedrichsen
2025-03-15 20:04:18 +01:00
parent f572b4ecf6
commit cd6934cda5

11
shell.nix Normal file
View File

@@ -0,0 +1,11 @@
{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
rustup
pkg-config
openssl
pulseaudio
];
}