d1df28f8e5
This is mainly to get the update of bootstrap tools. Otherwise there were mysterious segfaults: https://github.com/NixOS/nixpkgs/pull/7701#issuecomment-203389817
14 lines
439 B
Nix
14 lines
439 B
Nix
{ qtSubmodule, lib, copyPathsToStore, python, qtbase, qtsvg, qtxmlpatterns }:
|
|
|
|
qtSubmodule {
|
|
name = "qtdeclarative";
|
|
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
|
qtInputs = [ qtbase qtsvg qtxmlpatterns ];
|
|
nativeBuildInputs = [ python ];
|
|
postFixup = ''
|
|
fixQtModuleCMakeConfig "Qml"
|
|
fixQtModuleCMakeConfig "Quick"
|
|
fixQtModuleCMakeConfig "QuickTest"
|
|
fixQtModuleCMakeConfig "QuickWidgets"
|
|
'';
|
|
}
|