deluge: fix system tray indicator

This commit is contained in:
Leonardo Eugênio 2026-06-13 23:17:24 -03:00
parent 8ee01ca129
commit 7b6e082414

View file

@ -71,6 +71,11 @@ rec {
patches = old.patches ++ [ ../patches/sway/fix-hide_cursor-clearing-focus.patch ];
});
};
deluge = prev.deluge.overrideAttrs (old: {
propagatedBuildInputs = old.propagatedBuildInputs ++ [
prev.libappindicator-gtk3
];
});
}
);