libsForQt5: fix mistake

This commit is contained in:
Artturin 2023-11-14 20:38:33 +02:00
parent f80b2b510d
commit a28d96f47e
2 changed files with 4 additions and 4 deletions

View File

@ -24631,7 +24631,7 @@ with pkgs;
});
libsForQt5 = recurseIntoAttrs (import ./qt5-packages.nix {
inherit lib __splicedPackages makeScopeWithSplicing' generateSplicesForMkScope pkgsBuildHost;
inherit lib __splicedPackages makeScopeWithSplicing' generateSplicesForMkScope pkgsHostTarget;
});
# plasma5Packages maps to the Qt5 packages set that is used to build the plasma5 desktop

View File

@ -10,15 +10,15 @@
, __splicedPackages
, makeScopeWithSplicing'
, generateSplicesForMkScope
, pkgsBuildHost
, pkgsHostTarget
}:
let
pkgs = __splicedPackages;
# qt5 set should not be pre-spliced to prevent spliced packages being a part of an unspliced set
# 'pkgsCross.aarch64-multiplatform.pkgsBuildTarget.targetPackages.libsForQt5.qtbase' should not have a `__spliced` but if qt5 is pre-spliced then it will have one.
# pkgsBuildHost == pkgs
qt5 = pkgsBuildHost.qt5;
# pkgsHostTarget == pkgs
qt5 = pkgsHostTarget.qt5;
in
makeScopeWithSplicing' {