diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2018-12-13 21:25:24 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-05-24 01:40:13 +0200 |
commit | 24fd1fe6c62b7a9fc347794fde043285da272f5c (patch) | |
tree | 65557bf1d241ca389b619dbd24d18d51932ee030 /overlays/weechat | |
download | NUR-24fd1fe6c62b7a9fc347794fde043285da272f5c.tar.gz NUR-24fd1fe6c62b7a9fc347794fde043285da272f5c.tar.zst NUR-24fd1fe6c62b7a9fc347794fde043285da272f5c.zip |
Initial commit published for NUR
Diffstat (limited to 'overlays/weechat')
-rw-r--r-- | overlays/weechat/default.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/overlays/weechat/default.nix b/overlays/weechat/default.nix new file mode 100644 index 00000000..17faa0ec --- /dev/null +++ b/overlays/weechat/default.nix | |||
@@ -0,0 +1,14 @@ | |||
1 | self: super: { | ||
2 | weechat = super.weechat.override { | ||
3 | configure = { availablePlugins, ... }: { | ||
4 | plugins = with self; with availablePlugins; [ | ||
5 | # Make sure websocket_client is not 0.55.0, it provokes | ||
6 | # regular crashes | ||
7 | (python.withPackages (ps: with ps; assert websocket_client.version == "0.54.0"; [websocket_client emoji])) | ||
8 | perl | ||
9 | ruby | ||
10 | ]; | ||
11 | }; | ||
12 | }; | ||
13 | |||
14 | } | ||