mirror of
https://github.com/Ryujinx/libsoundio.git
synced 2024-12-22 19:45:38 +00:00
13 lines
200 B
Nix
13 lines
200 B
Nix
with import <nixpkgs> {}; {
|
|
libsoundioEnv = stdenv.mkDerivation {
|
|
name = "libsoundio";
|
|
buildInputs = [
|
|
alsaLib
|
|
cmake
|
|
gcc49
|
|
libjack2
|
|
libpulseaudio
|
|
];
|
|
};
|
|
}
|