hyprland: fix eval failure on darwin (#426908)

This commit is contained in:
Wolfgang Walther
2025-07-20 14:57:51 +00:00
committed by GitHub
+3 -1
View File
@@ -73,7 +73,9 @@ let
# possibility to add more adapters in the future, such as keepDebugInfo,
# which would be controlled by the `debug` flag
adapters = [
# Condition on darwin to avoid breaking eval for darwin in CI,
# even though darwin is not supported anyway.
adapters = lib.optionals (!stdenv.targetPlatform.isDarwin) [
stdenvAdapters.useMoldLinker
];