scilab-bin: fix build

Nixpkgs for a while has been checking for broken symlinks, and the
result of that is a lot of pacakges like this are broken.

For now we disable this checking, it can be safely reverted when
updated to version 2025.0.0.

Signed-off-by: John Titor <50095635+JohnRTitor@users.noreply.github.com>
This commit is contained in:
John Titor 2025-04-01 15:00:56 +05:30 committed by Masum Reza
parent 2113a521ad
commit e34066f045

View file

@ -68,6 +68,8 @@ let
runHook postInstall
'';
dontCheckForBrokenSymlinks = true;
};
linux = stdenv.mkDerivation {
@ -116,6 +118,8 @@ let
runHook postInstall
'';
dontCheckForBrokenSymlinks = true;
};
in
if stdenv.hostPlatform.isDarwin then darwin else linux