aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/libraries/qt-5/5.15/qttools.patch
blob: 8ae12198ca2586d11bbcd8f63d5f05d288631e5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--- a/src/macdeployqt/shared/shared.cpp
+++ b/src/macdeployqt/shared/shared.cpp
@@ -1241,6 +1241,12 @@ bool deployQmlImports(const QString &appBundlePath, DeploymentInfo deploymentInf
     if (!QFile(qmlImportScannerPath).exists())
         qmlImportScannerPath = QCoreApplication::applicationDirPath() + "/qmlimportscanner";
 
+#ifdef NIXPKGS_QMLIMPORTSCANNER
+    // Fallback: Nixpkgs hardcoded path
+    if (!QFile(qmlImportScannerPath).exists())
+        qmlImportScannerPath = NIXPKGS_QMLIMPORTSCANNER;
+#endif
+
     // Verify that we found a qmlimportscanner binary
     if (!QFile(qmlImportScannerPath).exists()) {
         LogError() << "qmlimportscanner not found at" << qmlImportScannerPath;