mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
pulseaudio: fix build on aarch64-darwin
This commit is contained in:
parent
48c1a0b4e6
commit
85a09cf3a3
|
@ -92,7 +92,10 @@ stdenv.mkDerivation rec {
|
|||
"--with-bash-completion-dir=${placeholder "out"}/share/bash-completions/completions"
|
||||
]
|
||||
++ lib.optional (jackaudioSupport && !libOnly) "--enable-jack"
|
||||
++ lib.optional stdenv.isDarwin "--with-mac-sysroot=/"
|
||||
++ lib.optionals stdenv.isDarwin [
|
||||
"--with-mac-sysroot=/"
|
||||
"--disable-neon-opt"
|
||||
]
|
||||
++ lib.optional (stdenv.isLinux && useSystemd) "--with-systemduserunitdir=${placeholder "out"}/lib/systemd/user"
|
||||
++ lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) "--disable-gsettings";
|
||||
|
||||
|
|
Loading…
Reference in a new issue