chicago95: fix noBrokenSymlinks

This commit is contained in:
Gliczy 2025-11-10 01:02:42 +01:00
parent 9967182c2d
commit 9a86a3568f

View file

@ -18,6 +18,12 @@ stdenvNoCC.mkDerivation (finalAttrs: {
nativeBuildInputs = [ gtk3 ];
buildPhase = ''
runHook preBuild
find . -xtype l -delete
runHook postBuild
'';
installPhase = ''
runHook preInstall