05882c0a74
Helpful weechat script to automatically keep buffers sorted. Can be activated like this: ``` nix weechat.override { configure = { ... }: { scripts = [ weechatScripts.weechat-autosort ]; }; } ```
18 lines
373 B
Nix
18 lines
373 B
Nix
{ callPackage, luaPackages, pythonPackages }:
|
|
|
|
{
|
|
weechat-xmpp = callPackage ./weechat-xmpp {
|
|
inherit (pythonPackages) pydns;
|
|
};
|
|
|
|
weechat-matrix-bridge = callPackage ./weechat-matrix-bridge {
|
|
inherit (luaPackages) cjson;
|
|
};
|
|
|
|
wee-slack = callPackage ./wee-slack {
|
|
inherit pythonPackages;
|
|
};
|
|
|
|
weechat-autosort = callPackage ./weechat-autosort { };
|
|
}
|