Revert "applyPatches: fix operator precedence"

This commit is contained in:
K900
2026-02-12 20:26:53 +03:00
committed by GitHub
parent ae2e2e6fda
commit d864a8cfdf
@@ -1080,7 +1080,7 @@ rec {
# Carry (and merge) information from the underlying `src` if present.
# If there is not src.meta, this meta block will be blank regardless.
meta = lib.optionalAttrs (finalAttrs.src ? meta) (removeAttrs finalAttrs.src.meta [ "position" ]);
meta = lib.optionalAttrs (finalAttrs.src ? meta) removeAttrs finalAttrs.src.meta [ "position" ];
};
};