mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
krop: Add wrapQtAppsHook. Closes #77339
This commit is contained in:
parent
8fcf9926fa
commit
7d14a45b51
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub, python3Packages, libsForQt5, ghostscript }:
|
{ stdenv, fetchFromGitHub, python3Packages, libsForQt5, ghostscript, qt5}:
|
||||||
|
|
||||||
python3Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
pname = "krop";
|
pname = "krop";
|
||||||
@ -19,6 +19,11 @@ python3Packages.buildPythonApplication rec {
|
|||||||
ghostscript
|
ghostscript
|
||||||
];
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ qt5.wrapQtAppsHook ];
|
||||||
|
makeWrapperArgs = [
|
||||||
|
"\${qtWrapperArgs[@]}"
|
||||||
|
];
|
||||||
|
|
||||||
# Disable checks because of interference with older Qt versions // xcb
|
# Disable checks because of interference with older Qt versions // xcb
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user