krop: Add wrapQtAppsHook. Closes #77339

This commit is contained in:
Maarten Hoogendoorn 2020-01-09 05:00:18 +01:00
parent 8fcf9926fa
commit 7d14a45b51

View file

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, python3Packages, libsForQt5, ghostscript }:
{ stdenv, fetchFromGitHub, python3Packages, libsForQt5, ghostscript, qt5}:
python3Packages.buildPythonApplication rec {
pname = "krop";
@ -19,6 +19,11 @@ python3Packages.buildPythonApplication rec {
ghostscript
];
nativeBuildInputs = [ qt5.wrapQtAppsHook ];
makeWrapperArgs = [
"\${qtWrapperArgs[@]}"
];
# Disable checks because of interference with older Qt versions // xcb
doCheck = false;