Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #56028 from Ma27/update-weechat

weechat: 2.3 -> 2.4

authored by

Franz Pletz and committed by
GitHub
dbca3b74 c6272018

+11 -2
+11 -2
pkgs/applications/networking/irc/weechat/default.nix
··· 10 10 , rubySupport ? true, ruby 11 11 , tclSupport ? true, tcl 12 12 , extraBuildInputs ? [] 13 + , fetchpatch 13 14 }: 14 15 15 16 let ··· 27 28 in 28 29 assert lib.all (p: p.enabled -> ! (builtins.elem null p.buildInputs)) plugins; 29 30 stdenv.mkDerivation rec { 30 - version = "2.3"; 31 + version = "2.4"; 31 32 name = "weechat-${version}"; 32 33 33 34 src = fetchurl { 34 35 url = "https://weechat.org/files/src/weechat-${version}.tar.bz2"; 35 - sha256 = "0mi4pfnyny0vqc35r0scn6yy21y790a5iwq8ms7kch7b7z11jn9w"; 36 + sha256 = "1z80y5fbrb56wdcx9njrf203r8282wnn3piw3yffk5lvhklsz9k1"; 36 37 }; 38 + 39 + patches = [ 40 + (fetchpatch { 41 + url = https://github.com/weechat/weechat/commit/6a9937f08ad2c14aeb0a847ffb99e652d47d8251.patch; 42 + sha256 = "1blhgxwqs65dvpw3ppxszxrsg02rx7qck1w71h61ljinyjzri3bp"; 43 + excludes = [ "ChangeLog.adoc" ]; 44 + }) 45 + ]; 37 46 38 47 outputs = [ "out" "man" ] ++ map (p: p.name) enabledPlugins; 39 48