mirror of
https://github.com/Ryujinx/libsoundio.git
synced 2025-01-11 06:55:29 +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
|
||
|
];
|
||
|
};
|
||
|
}
|