mnemosyne: Fix 'Could not find Qt' segfault

This commit is contained in:
Renato Alves 2020-04-11 01:13:08 +02:00
parent 4e4e57bdd3
commit f6889aa21e
No known key found for this signature in database
GPG Key ID: C5D065FC72082AE9

View File

@ -12,7 +12,7 @@ python.pkgs.buildPythonApplication rec {
sha256 = "0dhvg9cxc6m6kzk75h363h1g0bl80cqz11cijh0zpz9f4w6lnqsq";
};
nativeBuildInputs = with python.pkgs; [ wrapPython pyqtwebengine.wrapQtAppsHook ];
nativeBuildInputs = with python.pkgs; [ pyqtwebengine.wrapQtAppsHook ];
buildInputs = [ anki ];
@ -43,9 +43,9 @@ python.pkgs.buildPythonApplication rec {
dontWrapQtApps = true;
preFixup = ''
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
'';
makeWrapperArgs = [
"\${qtWrapperArgs[@]}"
];
meta = {
homepage = "https://mnemosyne-proj.org/";