Merge pull request #54141 from acowley/qtxmlpatterns-fix

qtxmlpatterns: fix dependency with qtdeclarative
This commit is contained in:
Jörg Thalheim
2019-01-18 08:39:05 +00:00
committed by GitHub
2 changed files with 4 additions and 4 deletions

View File

@@ -1,10 +1,10 @@
{ qtModule, lib, python2, qtbase, qtsvg, qtxmlpatterns }:
{ qtModule, lib, python2, qtbase, qtsvg }:
with lib;
qtModule {
name = "qtdeclarative";
qtInputs = [ qtbase qtsvg qtxmlpatterns ];
qtInputs = [ qtbase qtsvg ];
nativeBuildInputs = [ python2 ];
outputs = [ "out" "dev" "bin" ];
preConfigure = ''

View File

@@ -1,7 +1,7 @@
{ qtModule, qtbase }:
{ qtModule, qtbase, qtdeclarative }:
qtModule {
name = "qtxmlpatterns";
qtInputs = [ qtbase ];
qtInputs = [ qtbase qtdeclarative ];
devTools = [ "bin/xmlpatterns" "bin/xmlpatternsvalidator" ];
}