summary refs log tree commit diff
path: root/pkgs/applications/networking/irc
diff options
context:
space:
mode:
authorAlexis Hildebrandt <afh@surryhill.net>2023-10-27 10:51:00 +0200
committerAlexis Hildebrandt <afh@surryhill.net>2023-10-27 10:51:00 +0200
commit046fd15dbe740f329acf7e5e92463724594b1edb (patch)
tree6f5dba70958cf1e2d720e215d83b9dd86445c1d0 /pkgs/applications/networking/irc
parent0d4a1a205f095fa091789b04ef06eee9b348ca8b (diff)
downloadnixpkgs-046fd15dbe740f329acf7e5e92463724594b1edb.tar
nixpkgs-046fd15dbe740f329acf7e5e92463724594b1edb.tar.gz
nixpkgs-046fd15dbe740f329acf7e5e92463724594b1edb.tar.bz2
nixpkgs-046fd15dbe740f329acf7e5e92463724594b1edb.tar.lz
nixpkgs-046fd15dbe740f329acf7e5e92463724594b1edb.tar.xz
nixpkgs-046fd15dbe740f329acf7e5e92463724594b1edb.tar.zst
nixpkgs-046fd15dbe740f329acf7e5e92463724594b1edb.zip
weechat: 4.1.0 -> 4.1.1
Diffstat (limited to 'pkgs/applications/networking/irc')
-rw-r--r--pkgs/applications/networking/irc/weechat/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/networking/irc/weechat/default.nix b/pkgs/applications/networking/irc/weechat/default.nix
index 23bfb324c1a..952ca75bb6a 100644
--- a/pkgs/applications/networking/irc/weechat/default.nix
+++ b/pkgs/applications/networking/irc/weechat/default.nix
@@ -36,14 +36,14 @@ let
   in
     assert lib.all (p: p.enabled -> ! (builtins.elem null p.buildInputs)) plugins;
     stdenv.mkDerivation rec {
-      version = "4.1.0";
+      version = "4.1.1";
       pname = "weechat";
 
       hardeningEnable = [ "pie" ];
 
       src = fetchurl {
         url = "https://weechat.org/files/src/weechat-${version}.tar.xz";
-        hash = "sha256-AwSC5bjw9pxr/Upja2+m12tkqeweF58auqNbGrONHhA=";
+        hash = "sha256-d0I4YU2OY+TT1ac6bLZA7Hb+BsyYK4eoySNlFXkndnU=";
       };
 
       # Why is this needed? https://github.com/weechat/weechat/issues/2031
@@ -90,10 +90,10 @@ let
       meta = {
         homepage = "https://weechat.org/";
         changelog = "https://weechat.org/files/doc/weechat/ChangeLog-${version}.html";
-        description = "A fast, light and extensible chat client";
+        description = "Fast, light and extensible chat client";
         longDescription = ''
           You can find more documentation as to how to customize this package
-          (eg. adding python modules for scripts that would require them, etc.)
+          (e.g. adding python modules for scripts that would require them, etc.)
           on https://nixos.org/nixpkgs/manual/#sec-weechat .
         '';
         license = lib.licenses.gpl3;