kde4: Don't use callPackage on something that isn't a package

This commit is contained in:
Thomas Tuegel 2017-02-24 17:30:39 -06:00
parent 6a51739f59
commit fbf12d9f70
No known key found for this signature in database
GPG Key ID: 22CBF5249D4B4D59

View File

@ -16705,9 +16705,10 @@ with pkgs;
});
self = lib.makeScope deps.newScope (self: with self;
deps.callPackage ../desktops/kde-4.14 {
import ../desktops/kde-4.14 {
callPackageOrig = pkgs.callPackage;
inherit (self) callPackage;
inherit stdenv qt48 kdelibs;
}
);
in recurseIntoAttrs self;