14 lines
257 B
Nix
14 lines
257 B
Nix
final: prev: {
|
|
blueberry = prev.blueberry.overrideAttrs (o: {
|
|
patches =
|
|
(o.patches or [])
|
|
++ [
|
|
./patches/wayland.patch
|
|
];
|
|
buildInputs =
|
|
(o.buildInputs or [])
|
|
++ [
|
|
prev.libappindicator
|
|
];
|
|
});
|
|
}
|