summaryrefslogtreecommitdiff
path: root/overlays/weechat/default.nix
blob: 17faa0ec62a53b1e2eb41a2f66a7214e526cb543 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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; assert websocket_client.version == "0.54.0"; [websocket_client emoji]))
         perl
         ruby
        ];
    };
  };

}