-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Could NOT find qtpaths executable #8
Comments
Is this the reason that it can't find my kvantum theme? All I have is "Fusion" and "Windows" when I try to configure via the GUI. |
Obviously this needs to be called with {
stdenv,
lib,
fetchFromGitHub,
wrapQtAppsHook,
qtbase,
qtsvg,
qttools,
qmake,
qtwayland,
}:
stdenv.mkDerivation rec {
pname = "qt6ct";
version = "0.7";
src = fetchFromGitHub {
owner = "trialuser02";
repo = "qt6ct";
rev = version;
sha256 = "sha256-7WuHdb7gmdC/YqrPDT7OYbD6BEm++EcIkmORW7cSPDE=";
};
nativeBuildInputs = [qmake qttools qtwayland wrapQtAppsHook];
buildInputs = [qtbase qtsvg];
qmakeFlags = [
"LRELEASE_EXECUTABLE=${lib.getDev qttools}/bin/lrelease"
"PLUGINDIR=${placeholder "out"}/${qtbase.qtPluginPrefix}"
];
# meta = with lib; {
# description = "Qt5 Configuration Tool";
# homepage = "https://www.opendesktop.org/content/show.php?content=168066";
# platforms = platforms.linux;
# license = licenses.bsd2;
# maintainers = with maintainers; [ralith];
# };
} |
no. qt themes should be in $QT_PLUGIN_PATH on runtime (not on compiletime)
see also NixOS/nixpkgs#214943 |
#31 should fix this. |
qt6ct/CMakeLists.txt
Lines 42 to 43 in e41923d
problem is:
lrelease
is part of theqttools
moduleqtpaths
is part of theqtbase
moduleso, on nixos, these have different prefixes
fixed by using the commented code blocks
is there a good reason this code is commented?
maybe use the current code as fallback?
The text was updated successfully, but these errors were encountered: