aboutsummaryrefslogtreecommitdiff
path: root/overlays/weechat/default.nix
blob: e8cc792f27b8c7b0c2294cef8724c5b20aebaf57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
self: super: {
  weechat = super.weechat.override {
    configure = { availablePlugins, ... }: {
      plugins = with self; with availablePlugins; [
         (python.withPackages (ps: with ps; [websocket_client emoji]))
         perl
         ruby
        ];
    };
  };

}