Unverified Commit 02313e86 authored by K900's avatar K900 Committed by GitHub
Browse files

applyPatches: fix operator precedence (#489842)

parents 09a95a89 d15b429f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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" ]);
      };
  };