From 98b05e942d4649e9d97dada99c93ed6f18d32bf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo?= Date: Thu, 15 May 2025 10:58:41 -0300 Subject: [PATCH] nordic: remove broken symlinks --- pkgs/data/themes/nordic/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/data/themes/nordic/default.nix b/pkgs/data/themes/nordic/default.nix index acd2651e5609..071b18e3a7ba 100644 --- a/pkgs/data/themes/nordic/default.nix +++ b/pkgs/data/themes/nordic/default.nix @@ -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 '';