fix(nix): correct indentation in at-spi2-core overrideAttrs

- Adjusted the indentation in `at-spi2-core`'s `overrideAttrs` block for consistency.
- Improves readability and maintains uniform code style across the file.
This commit is contained in:
Harald Hoyer 2026-01-15 13:29:36 +01:00
parent 88bf3cbcb8
commit c1f145e4c5

View file

@ -5,10 +5,10 @@ final: prev: {
./gnome-console-Add-image-and-file-path-pasting-support-for.patch ./gnome-console-Add-image-and-file-path-pasting-support-for.patch
]; ];
}); });
at-spi2-core = prev.at-spi2-core.overrideAttrs (oldAttrs: { at-spi2-core = prev.at-spi2-core.overrideAttrs (oldAttrs: {
postInstall = (oldAttrs.postInstall or "") + '' postInstall = (oldAttrs.postInstall or "") + ''
substituteInPlace $out/etc/xdg/Xwayland-session.d/00-at-spi \ substituteInPlace $out/etc/xdg/Xwayland-session.d/00-at-spi \
--replace-fail 'exec xprop' 'exec ${final.xorg.xprop}/bin/xprop' --replace-fail 'exec xprop' 'exec ${final.xorg.xprop}/bin/xprop'
''; '';
}); });
} }