forked from mirrors/nixpkgs
e4bc0e2b5f
This plugin is fairly outdated and depends on python2 libraries that don't receive any updates either (xmpppy for instance[1]). [1] https://pypi.org/project/xmpppy/
14 lines
294 B
Nix
14 lines
294 B
Nix
{ callPackage, luaPackages }:
|
|
|
|
{
|
|
weechat-matrix-bridge = callPackage ./weechat-matrix-bridge {
|
|
inherit (luaPackages) cjson luaffi;
|
|
};
|
|
|
|
wee-slack = callPackage ./wee-slack { };
|
|
|
|
weechat-autosort = callPackage ./weechat-autosort { };
|
|
|
|
weechat-otr = callPackage ./weechat-otr { };
|
|
}
|