gretl: disable install parallelism

Without the change parallel installs fail as:

    cp: cannot stat '...-gretl-2022c/share/gretl/data/plotbars': Not a directory
    make[1]: *** [Makefile:73: install_datafiles] Error 1
This commit is contained in:
Sergei Trofimovich
2023-03-09 22:29:59 +00:00
parent 04cc3ff7d3
commit 03be09d518
@@ -28,6 +28,10 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkg-config ];
enableParallelBuilding = true;
# Missing install depends:
# cp: cannot stat '...-gretl-2022c/share/gretl/data/plotbars': Not a directory
# make[1]: *** [Makefile:73: install_datafiles] Error 1
enableParallelInstalling = false;
meta = with lib; {
description = "A software package for econometric analysis";