audiolib/shell.nix

11 lines
No EOL
183 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
libao
pkg-config
gcc
file
];
shellHook = ''
'';
}