2023-07-02 21:03:44 -04:00
|
|
|
final: prev: {
|
|
|
|
blueberry = prev.blueberry.overrideAttrs (o: {
|
2023-11-22 15:33:16 -05:00
|
|
|
patches =
|
|
|
|
(o.patches or [])
|
|
|
|
++ [
|
|
|
|
./patches/wayland.patch
|
|
|
|
];
|
|
|
|
buildInputs =
|
|
|
|
(o.buildInputs or [])
|
|
|
|
++ [
|
|
|
|
prev.libappindicator
|
|
|
|
];
|
2023-07-02 21:03:44 -04:00
|
|
|
});
|
|
|
|
}
|