linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / qt-5 / modules / qtlocation.nix
blob182b5f5bc334c53ecd2705cf38735149c79513f2
1 { lib, stdenv, qtModule, qtbase, qtmultimedia }:
3 qtModule {
4   name = "qtlocation";
5   qtInputs = [ qtbase qtmultimedia ];
6   outputs = [ "bin" "out" "dev" ];
7   qmakeFlags = lib.optional stdenv.isDarwin [
8      # boost uses std::auto_ptr which has been disabled in clang with libcxx
9      # This flag re-enables this feature
10      # https://libcxx.llvm.org/docs/UsingLibcxx.html#c-17-specific-configuration-macros
11      "QMAKE_CXXFLAGS+=-D_LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR"
12   ];