nordic: remove broken symlinks

This commit is contained in:
José Romildo 2025-05-15 10:58:41 -03:00
parent 8ad6adb4c7
commit 98b05e942d

View file

@ -92,9 +92,6 @@ stdenvNoCC.mkDerivation rec {
dontWrapQtApps = true;
# FIXME: https://github.com/EliverLara/Nordic/issues/331
dontCheckForBrokenSymlinks = true;
installPhase = ''
runHook preInstall
@ -146,6 +143,10 @@ stdenvNoCC.mkDerivation rec {
# each set of duplicates, reducing the installed size in about 53%
jdupes --quiet --link-soft --recurse $out/share
# FIXME: https://github.com/EliverLara/Nordic/issues/331
echo "Removing broken symlinks ..."
find $out -xtype l -print -delete
runHook postInstall
'';