22b10bac78
Qt 5.8 is immediately removed because its support window is ended. The qtlocation module is built with `enableParallelBuilding = false` so that the clipper library will be built before the components which link to it. kjs now depends directly on pcre. The dependency was previously propagated from qtbase, which now depends on pcre2.
15 lines
375 B
Nix
15 lines
375 B
Nix
{ stdenv, qtSubmodule, copyPathsToStore, qtbase }:
|
|
|
|
with stdenv.lib;
|
|
|
|
qtSubmodule {
|
|
name = "qttools";
|
|
qtInputs = [ qtbase ];
|
|
outputs = [ "out" "dev" "bin" ];
|
|
patches = copyPathsToStore (readPathsFromFile ./. ./series);
|
|
# qmake moves all binaries to $dev in preFixup
|
|
postFixup = ''
|
|
moveToOutput "bin/qdbus" "$bin"
|
|
moveToOutput "bin/qtpaths" "$bin"
|
|
'';
|
|
}
|