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>

Changed files
+4
pkgs
by-name
sc
scilab-bin
+4
pkgs/by-name/sc/scilab-bin/package.nix
···
runHook postInstall
'';
+
+
dontCheckForBrokenSymlinks = true;
};
linux = stdenv.mkDerivation {
···
runHook postInstall
'';
+
+
dontCheckForBrokenSymlinks = true;
};
in
if stdenv.hostPlatform.isDarwin then darwin else linux