- Adjusted the indentation in `at-spi2-core`'s `overrideAttrs` block for consistency. - Improves readability and maintains uniform code style across the file.
14 lines
491 B
Nix
14 lines
491 B
Nix
{ ... }:
|
|
final: prev: {
|
|
gnome-console = prev.gnome-console.overrideAttrs (prevAttrs: {
|
|
patches = (prevAttrs.patches or [ ]) ++ [
|
|
./gnome-console-Add-image-and-file-path-pasting-support-for.patch
|
|
];
|
|
});
|
|
at-spi2-core = prev.at-spi2-core.overrideAttrs (oldAttrs: {
|
|
postInstall = (oldAttrs.postInstall or "") + ''
|
|
substituteInPlace $out/etc/xdg/Xwayland-session.d/00-at-spi \
|
|
--replace-fail 'exec xprop' 'exec ${final.xorg.xprop}/bin/xprop'
|
|
'';
|
|
});
|
|
}
|