mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
libsForQt5.liblastfm: revert addition of flags on darwin
Apparently on x86_64-darwin there are also C files compiled, and that doesn't go well with -std=c++* https://hydra.nixos.org/build/174111870 Fortunately the flag only seems needed with gcc 11 so far.
This commit is contained in:
parent
9233921313
commit
1dfcf7d2e7
1 changed files with 4 additions and 1 deletions
|
@ -23,7 +23,10 @@ stdenv.mkDerivation rec {
|
|||
buildInputs = [ fftwSinglePrec libsamplerate qtbase ]
|
||||
++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.SystemConfiguration;
|
||||
|
||||
NIX_CFLAGS_COMPILE = [ "-std=c++11" ];
|
||||
NIX_CFLAGS_COMPILE =
|
||||
lib.optionals (stdenv.cc.isGNU && lib.versionAtLeast stdenv.cc.version "11") [
|
||||
"-std=c++11"
|
||||
];
|
||||
|
||||
dontWrapQtApps = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue