blob: 07c6d8953109dcb8aa5787dc508aca01629db525 (
plain) (
tree)
|
|
self: super: {
weechat = super.weechat.override {
configure = { availablePlugins, ... }: {
plugins = with self; with availablePlugins; [
# Make sure websocket_client is not 0.55.0, it provokes
# regular crashes
(python.withPackages (ps: with ps; [websocket_client emoji]))
perl
ruby
];
};
};
}
|