mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 21:17:46 +00:00
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;
|
||
|
}
|