mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
pulseaudio: fix build on darwin
Needs pin to older autoconf 2.69
This commit is contained in:
parent
040d7580a5
commit
e9fe0c1f04
@ -17523,9 +17523,13 @@ in
|
||||
inherit (darwin.apple_sdk.frameworks) CoreServices AudioUnit Cocoa;
|
||||
};
|
||||
|
||||
pulseaudio = callPackage ../servers/pulseaudio {
|
||||
pulseaudio = callPackage ../servers/pulseaudio ({
|
||||
inherit (darwin.apple_sdk.frameworks) CoreServices AudioUnit Cocoa;
|
||||
};
|
||||
} // stdenv.lib.optionalAttrs stdenv.isDarwin {
|
||||
# Default autoreconfHook (2.70) fails on darwin,
|
||||
# with "configure: error: *** Compiler does not support -std=gnu11"
|
||||
autoreconfHook = buildPackages.autoreconfHook269;
|
||||
});
|
||||
|
||||
qpaeq = libsForQt5.callPackage ../servers/pulseaudio/qpaeq.nix { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user