Advertisement
Guest User

Untitled

a guest
Nov 2nd, 2020
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. self: super: {
  2. weechat_wrapped = super.weechat.override {
  3. configure = { availablePlugins, ... }: {
  4. plugins = with availablePlugins; [
  5. (python.withPackages (py: [
  6. self.weechatScripts.weechat-matrix
  7. py.yowsup
  8. py.notify
  9. ]))
  10. perl
  11. ];
  12. scripts = with self.weechatScripts; [
  13. wee-slack weechat-matrix
  14. ];
  15. };
  16. };
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement