diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-04-26 23:46:29 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-04-26 23:46:29 +0200 |
commit | df90ef5e9c34552249735d6a23cee038dd674397 (patch) | |
tree | 364ec02f3d8620480cfa3aa054ba2c67460a92bd /overlays/weechat | |
parent | 167b81657d696e91545cedde172e7859643bba06 (diff) | |
download | Nix-df90ef5e9c34552249735d6a23cee038dd674397.tar.gz Nix-df90ef5e9c34552249735d6a23cee038dd674397.tar.zst Nix-df90ef5e9c34552249735d6a23cee038dd674397.zip |
Explicit websocket constraint for wee-slack
Diffstat (limited to 'overlays/weechat')
-rw-r--r-- | overlays/weechat/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/overlays/weechat/default.nix b/overlays/weechat/default.nix index 07c6d89..17faa0e 100644 --- a/overlays/weechat/default.nix +++ b/overlays/weechat/default.nix | |||
@@ -4,7 +4,7 @@ self: super: { | |||
4 | plugins = with self; with availablePlugins; [ | 4 | plugins = with self; with availablePlugins; [ |
5 | # Make sure websocket_client is not 0.55.0, it provokes | 5 | # Make sure websocket_client is not 0.55.0, it provokes |
6 | # regular crashes | 6 | # regular crashes |
7 | (python.withPackages (ps: with ps; [websocket_client emoji])) | 7 | (python.withPackages (ps: with ps; assert websocket_client.version == "0.54.0"; [websocket_client emoji])) |
8 | perl | 8 | perl |
9 | ruby | 9 | ruby |
10 | ]; | 10 | ]; |