3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #77356 from moretea/krop-wrapQtAppsHook

krop: Add wrapQtAppsHook.
This commit is contained in:
Thomas Tuegel 2020-01-16 10:02:56 -06:00 committed by GitHub
commit 32907db36c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;