mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
689a50f3a2
WeeChat also supports Python3 for scripts which should be preferred as CPython2 is about to get EOLed soon: https://weechat.org/scripts/python3/
18 lines
382 B
Nix
18 lines
382 B
Nix
{ callPackage, luaPackages }:
|
|
|
|
{
|
|
weechat-xmpp = callPackage ./weechat-xmpp {
|
|
inherit (pythonPackages) pydns;
|
|
};
|
|
|
|
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 { };
|
|
}
|