kmymoney: cleanup install check
A few things changed: - no need for stdenv.hostPlatform == stdenv.buildPlatform conditional - this is already done in make-derivation - put xvfb_run in installCheckInputs
This commit is contained in:
parent
0c1197a7fb
commit
11e2f31532
1 changed files with 5 additions and 6 deletions
|
@ -60,12 +60,11 @@ stdenv.mkDerivation rec {
|
|||
"$out/share/kmymoney/weboob/kmymoneyweboob.py"
|
||||
'';
|
||||
|
||||
doInstallCheck = stdenv.hostPlatform == stdenv.buildPlatform;
|
||||
installCheckPhase = let
|
||||
pluginPath = "${qtbase.bin}/${qtbase.qtPluginPrefix}";
|
||||
in lib.optionalString doInstallCheck ''
|
||||
QT_PLUGIN_PATH=${lib.escapeShellArg pluginPath} CTEST_OUTPUT_ON_FAILURE=1 \
|
||||
${xvfb_run}/bin/xvfb-run -s '-screen 0 1024x768x24' make test \
|
||||
doInstallCheck = true;
|
||||
installCheckInputs = [ xvfb_run ];
|
||||
installCheckPhase = ''
|
||||
QT_PLUGIN_PATH=${lib.escapeShellArg "${qtbase.bin}/${qtbase.qtPluginPrefix}"} \
|
||||
xvfb-run -s '-screen 0 1024x768x24' make test \
|
||||
ARGS="-E '(reports-chart-test)'" # Test fails, so exclude it for now.
|
||||
'';
|
||||
|
||||
|
|
Loading…
Reference in a new issue