summary refs log tree commit diff
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-10-25 14:57:54 +0100
committerGitHub <noreply@github.com>2018-10-25 14:57:54 +0100
commit0cbf4ca1975cd40831f32ef62c9bbae03e2a9b36 (patch)
tree254b2b67d1b2791ea70e09588adaa2947354c0b6
parent5dc174804313ab0d3fcb4dfe28c4509f9f3421a0 (diff)
parent2702772d2d10dc482cbe20d766d214bf89d1ed71 (diff)
downloadnixpkgs-0cbf4ca1975cd40831f32ef62c9bbae03e2a9b36.tar
nixpkgs-0cbf4ca1975cd40831f32ef62c9bbae03e2a9b36.tar.gz
nixpkgs-0cbf4ca1975cd40831f32ef62c9bbae03e2a9b36.tar.bz2
nixpkgs-0cbf4ca1975cd40831f32ef62c9bbae03e2a9b36.tar.lz
nixpkgs-0cbf4ca1975cd40831f32ef62c9bbae03e2a9b36.tar.xz
nixpkgs-0cbf4ca1975cd40831f32ef62c9bbae03e2a9b36.tar.zst
nixpkgs-0cbf4ca1975cd40831f32ef62c9bbae03e2a9b36.zip
Merge pull request #49097 from alyssais/weechat_2.3
weechat: 2.2 -> 2.3
-rw-r--r--pkgs/applications/networking/irc/weechat/default.nix13
1 files changed, 3 insertions, 10 deletions
diff --git a/pkgs/applications/networking/irc/weechat/default.nix b/pkgs/applications/networking/irc/weechat/default.nix
index 513407a0b71..7ed237ce6aa 100644
--- a/pkgs/applications/networking/irc/weechat/default.nix
+++ b/pkgs/applications/networking/irc/weechat/default.nix
@@ -30,12 +30,12 @@ let
   weechat =
     assert lib.all (p: p.enabled -> ! (builtins.elem null p.buildInputs)) plugins;
     stdenv.mkDerivation rec {
-      version = "2.2";
+      version = "2.3";
       name = "weechat-${version}";
 
       src = fetchurl {
-        url = "http://weechat.org/files/src/weechat-${version}.tar.bz2";
-        sha256 = "0p4nhh7f7w4q77g7jm9i6fynndqlgjkc9dk5g1xb4gf9imiisqlg";
+        url = "https://weechat.org/files/src/weechat-${version}.tar.bz2";
+        sha256 = "0mi4pfnyny0vqc35r0scn6yy21y790a5iwq8ms7kch7b7z11jn9w";
       };
 
       outputs = [ "out" "man" ] ++ map (p: p.name) enabledPlugins;
@@ -70,13 +70,6 @@ let
         done
       '';
 
-      # remove when bumping to the latest version.
-      # This patch basically rebases `fcf7469d7664f37e94d5f6d0b3fe6fce6413f88c`
-      # from weechat upstream to weechat-2.2.
-      patches = [
-        ./aggregate-commands.patch
-      ];
-
       meta = {
         homepage = http://www.weechat.org/;
         description = "A fast, light and extensible chat client";