tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
weechat: 4.1.0 -> 4.1.1
Alexis Hildebrandt
2 years ago
046fd15d
0d4a1a20
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
applications
networking
irc
weechat
default.nix
+4
-4
pkgs/applications/networking/irc/weechat/default.nix
···
36
36
in
37
37
assert lib.all (p: p.enabled -> ! (builtins.elem null p.buildInputs)) plugins;
38
38
stdenv.mkDerivation rec {
39
39
-
version = "4.1.0";
39
39
+
version = "4.1.1";
40
40
pname = "weechat";
41
41
42
42
hardeningEnable = [ "pie" ];
43
43
44
44
src = fetchurl {
45
45
url = "https://weechat.org/files/src/weechat-${version}.tar.xz";
46
46
-
hash = "sha256-AwSC5bjw9pxr/Upja2+m12tkqeweF58auqNbGrONHhA=";
46
46
+
hash = "sha256-d0I4YU2OY+TT1ac6bLZA7Hb+BsyYK4eoySNlFXkndnU=";
47
47
};
48
48
49
49
# Why is this needed? https://github.com/weechat/weechat/issues/2031
···
90
90
meta = {
91
91
homepage = "https://weechat.org/";
92
92
changelog = "https://weechat.org/files/doc/weechat/ChangeLog-${version}.html";
93
93
-
description = "A fast, light and extensible chat client";
93
93
+
description = "Fast, light and extensible chat client";
94
94
longDescription = ''
95
95
You can find more documentation as to how to customize this package
96
96
-
(eg. adding python modules for scripts that would require them, etc.)
96
96
+
(e.g. adding python modules for scripts that would require them, etc.)
97
97
on https://nixos.org/nixpkgs/manual/#sec-weechat .
98
98
'';
99
99
license = lib.licenses.gpl3;