5fc5f15206
In Qt-5.12, the order of the dependency between these two packages flipped. A symptom of the problem is an error like, `module "QtQuick.XmlListModel" is not installed`. The upstream changes that this reflects are in qtxmlpatterns <8c6e24329e
> and qtdeclarative <0477a057fd
>
7 lines
179 B
Nix
7 lines
179 B
Nix
{ qtModule, qtbase, qtdeclarative }:
|
|
|
|
qtModule {
|
|
name = "qtxmlpatterns";
|
|
qtInputs = [ qtbase qtdeclarative ];
|
|
devTools = [ "bin/xmlpatterns" "bin/xmlpatternsvalidator" ];
|
|
}
|