fe0ab944db
The module definitions are factored out and shared between qt56 and qt59. The symlink farm which was created during builds is no longer needed.
10 lines
241 B
Nix
10 lines
241 B
Nix
{ qtModule, qtbase, qtmultimedia }:
|
|
|
|
qtModule {
|
|
name = "qtlocation";
|
|
qtInputs = [ qtbase qtmultimedia ];
|
|
outputs = [ "bin" "out" "dev" ];
|
|
# Linking with -lclipper fails with parallel build enabled
|
|
enableParallelBuilding = false;
|
|
}
|