diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-03-14 07:44:28 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-03-14 07:44:28 +0100 |
commit | 111049f36408d221bf5452ba9124b782100376a8 (patch) | |
tree | 83b9db30b7602c416d99ddc1d8c924f77c8e4234 | |
parent | 18fdf47041026412e365224f21c258b436ceda18 (diff) | |
download | Nix-111049f36408d221bf5452ba9124b782100376a8.tar.gz Nix-111049f36408d221bf5452ba9124b782100376a8.tar.zst Nix-111049f36408d221bf5452ba9124b782100376a8.zip |
Upgrade weechat to 2.4
-rw-r--r-- | default.nix | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/default.nix b/default.nix index 444d29d..b1ae800 100644 --- a/default.nix +++ b/default.nix | |||
@@ -63,19 +63,11 @@ let | |||
63 | configureFlags = old.configureFlags ++ [ "--enable-plugins" ]; | 63 | configureFlags = old.configureFlags ++ [ "--enable-plugins" ]; |
64 | }); | 64 | }); |
65 | 65 | ||
66 | mypkgs.weechat = (wrapWeechat ( | 66 | mypkgs.weechat = weechat.override { |
67 | weechat-unwrapped.overrideAttrs (old: rec { | ||
68 | version = "2.3"; | ||
69 | name = "weechat-${version}"; | ||
70 | src = fetchurl { | ||
71 | url = "https://weechat.org/files/src/weechat-${version}.tar.bz2"; | ||
72 | sha256 = "0mi4pfnyny0vqc35r0scn6yy21y790a5iwq8ms7kch7b7z11jn9w"; | ||
73 | }; | ||
74 | patches = []; | ||
75 | }) | ||
76 | ) {}).override { | ||
77 | configure = { availablePlugins, ... }: { | 67 | configure = { availablePlugins, ... }: { |
78 | plugins = with availablePlugins; [ | 68 | plugins = with availablePlugins; [ |
69 | # Make sure websocket_client is not 0.55.0, it provokes | ||
70 | # regular crashes | ||
79 | (python.withPackages (ps: with ps; [websocket_client emoji])) | 71 | (python.withPackages (ps: with ps; [websocket_client emoji])) |
80 | perl | 72 | perl |
81 | ruby | 73 | ruby |