burp: pull upstream fix for ncurses-6.3

Without the fix build on ncurses-6.3 fails as:

src/client/monitor/status_client_ncurses.c:350:9:
error: format not a string literal and no format arguments [-Werror=format-security]
350 | mvprintw(0, col-l-1, date);
| ^~~~~~~~

+10 -1
+10 -1
pkgs/tools/backup/burp/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config 1 + { lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, pkg-config 2 2 , acl, librsync, ncurses, openssl, zlib, uthash }: 3 3 4 4 stdenv.mkDerivation rec { ··· 11 11 rev = version; 12 12 sha256 = "1zhq240kz881vs2s620qp0kifmgr582caalm85ls789w9rmdkhjl"; 13 13 }; 14 + 15 + patches = [ 16 + # Pull upstream fix for ncurses-6.3 support 17 + (fetchpatch { 18 + name = "ncurses-6.3.patch"; 19 + url = "https://github.com/grke/burp/commit/1d6c931af7c11f164cf7ad3479781e8f03413496.patch"; 20 + sha256 = "14sfbfahlankz3xg6v10i8fnmpnmqpp73q9xm0l0hnjh25igv6bl"; 21 + }) 22 + ]; 14 23 15 24 nativeBuildInputs = [ autoreconfHook pkg-config ]; 16 25 buildInputs = [ librsync ncurses openssl zlib uthash ]