From e34066f045ecb393b587caf821fbdb7a2dae90dd Mon Sep 17 00:00:00 2001 From: John Titor <50095635+JohnRTitor@users.noreply.github.com> Date: Tue, 1 Apr 2025 15:00:56 +0530 Subject: [PATCH] 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> --- pkgs/by-name/sc/scilab-bin/package.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/by-name/sc/scilab-bin/package.nix b/pkgs/by-name/sc/scilab-bin/package.nix index 9d9afc9e9fe9..d79508f08316 100644 --- a/pkgs/by-name/sc/scilab-bin/package.nix +++ b/pkgs/by-name/sc/scilab-bin/package.nix @@ -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