mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
Merge pull request #9794 from taku0/libao_for_darwin
libao: enable libcap only on Linux
This commit is contained in:
commit
520958d891
@ -10,8 +10,9 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
buildInputs =
|
||||
[ pkgconfig libcap ] ++
|
||||
lib.optional stdenv.isLinux (if usePulseAudio then libpulseaudio else alsaLib);
|
||||
[ pkgconfig ] ++
|
||||
lib.optional stdenv.isLinux (if usePulseAudio then libpulseaudio else alsaLib) ++
|
||||
lib.optional stdenv.isLinux libcap;
|
||||
|
||||
meta = {
|
||||
longDescription = ''
|
||||
|
Loading…
Reference in New Issue
Block a user