Skip to content

Commit

Permalink
mnemosyne: Fix 'Could not find Qt' segfault
Browse files Browse the repository at this point in the history
(cherry picked from commit f6889aa)
  • Loading branch information
unode authored and rnhmjoj committed Apr 13, 2020
1 parent 93e93f8 commit ec099df
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/games/mnemosyne/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ python.pkgs.buildPythonApplication rec {
sha256 = "0lx70vl3pa3c42lr59s459b2bqi7fm0c80lsm06l34ggfwdadq24";
};

nativeBuildInputs = with python.pkgs; [ wrapPython pyqtwebengine.wrapQtAppsHook ];
nativeBuildInputs = with python.pkgs; [ pyqtwebengine.wrapQtAppsHook ];

buildInputs = [ anki ];

Expand Down Expand Up @@ -43,9 +43,9 @@ python.pkgs.buildPythonApplication rec {

dontWrapQtApps = true;

preFixup = ''
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
'';
makeWrapperArgs = [
"\${qtWrapperArgs[@]}"
];

meta = {
homepage = https://mnemosyne-proj.org/;
Expand Down

0 comments on commit ec099df

Please sign in to comment.