Skip to content

Commit 03be09d

Browse files
committed
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
1 parent 04cc3ff commit 03be09d

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

pkgs/applications/science/math/gretl/default.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ stdenv.mkDerivation rec {
2828
nativeBuildInputs = [ pkg-config ];
2929

3030
enableParallelBuilding = true;
31+
# Missing install depends:
32+
# cp: cannot stat '...-gretl-2022c/share/gretl/data/plotbars': Not a directory
33+
# make[1]: *** [Makefile:73: install_datafiles] Error 1
34+
enableParallelInstalling = false;
3135

3236
meta = with lib; {
3337
description = "A software package for econometric analysis";

0 commit comments

Comments
 (0)