weechat: 3.8 -> 4.0.0

https://github.com/weechat/weechat/releases/tag/v4.0.0
This commit is contained in:
Naïm Favier 2023-06-25 12:11:44 +02:00 committed by Anderson Torres
parent 933a41a73f
commit 6ca447d525
2 changed files with 5 additions and 5 deletions

View file

@ -36,14 +36,14 @@ let
in
assert lib.all (p: p.enabled -> ! (builtins.elem null p.buildInputs)) plugins;
stdenv.mkDerivation rec {
version = "3.8";
version = "4.0.0";
pname = "weechat";
hardeningEnable = [ "pie" ];
src = fetchurl {
url = "https://weechat.org/files/src/weechat-${version}.tar.bz2";
hash = "sha256-objxAUGvBhTkbQl4GshDP3RsCkAW4z917L9WyaVoYj4=";
url = "https://weechat.org/files/src/weechat-${version}.tar.xz";
hash = "sha256-W9de4V8zkqCtF07nxUUY2uzjh4R3ZwwH8Q1uv5iCQPk=";
};
outputs = [ "out" "man" ] ++ map (p: p.name) enabledPlugins;
@ -84,7 +84,7 @@ let
'';
meta = {
homepage = "http://www.weechat.org/";
homepage = "https://weechat.org/";
description = "A fast, light and extensible chat client";
longDescription = ''
You can find more documentation as to how to customize this package

View file

@ -35529,7 +35529,7 @@ with pkgs;
weechat-unwrapped = callPackage ../applications/networking/irc/weechat {
inherit (darwin) libobjc;
inherit (darwin) libresolv;
guile = guile_2_0;
guile = guile_3_0;
};
weechat = wrapWeechat weechat-unwrapped { };