summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5/modules/qtlocation.nix
blob: 008583ebaf9362e0d4d0e4c5e2eaa4c4b3d6fd12 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ qtModule, qtbase, qtmultimedia }:

qtModule {
  name = "qtlocation";
  qtInputs = [ qtbase qtmultimedia ];
  outputs = [ "bin" "out" "dev" ];
  # Linking with -lclipper fails with parallel build enabled
  enableParallelBuilding = false;
}