12 lines
160 B
Nix
12 lines
160 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs.buildPackages; [
|
|
rustup
|
|
pkg-config
|
|
openssl
|
|
pulseaudio
|
|
];
|
|
}
|