summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2021-11-22 18:49:05 +0800
committerGitHub <noreply@github.com>2021-11-22 18:49:05 +0800
commit214fc66e1dbd25f4aba53b6fac2d7688b4ab34f0 (patch)
tree76db6a61c049df5d88c3f559e9f3d395c8272a25 /pkgs/tools
parent119ff2d7a94939808618cd8bb2d92c82074d04fd (diff)
parentec713fe238f1d3b31089f1668d849cf6c0502bfc (diff)
downloadnixpkgs-214fc66e1dbd25f4aba53b6fac2d7688b4ab34f0.tar
nixpkgs-214fc66e1dbd25f4aba53b6fac2d7688b4ab34f0.tar.gz
nixpkgs-214fc66e1dbd25f4aba53b6fac2d7688b4ab34f0.tar.bz2
nixpkgs-214fc66e1dbd25f4aba53b6fac2d7688b4ab34f0.tar.lz
nixpkgs-214fc66e1dbd25f4aba53b6fac2d7688b4ab34f0.tar.xz
nixpkgs-214fc66e1dbd25f4aba53b6fac2d7688b4ab34f0.tar.zst
nixpkgs-214fc66e1dbd25f4aba53b6fac2d7688b4ab34f0.zip
Merge pull request #146981 from trofi/fix-burp-for-ncurses-6.3
burp: pull upstream fix for ncurses-6.3
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/backup/burp/default.nix11
1 files changed, 10 insertions, 1 deletions
diff --git a/pkgs/tools/backup/burp/default.nix b/pkgs/tools/backup/burp/default.nix
index 00b2c71037a..187fe71896d 100644
--- a/pkgs/tools/backup/burp/default.nix
+++ b/pkgs/tools/backup/burp/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
+{ lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, pkg-config
 , acl, librsync, ncurses, openssl, zlib, uthash }:
 
 stdenv.mkDerivation rec {
@@ -12,6 +12,15 @@ stdenv.mkDerivation rec {
     sha256 = "1zhq240kz881vs2s620qp0kifmgr582caalm85ls789w9rmdkhjl";
   };
 
+  patches = [
+    # Pull upstream fix for ncurses-6.3 support
+    (fetchpatch {
+      name = "ncurses-6.3.patch";
+      url = "https://github.com/grke/burp/commit/1d6c931af7c11f164cf7ad3479781e8f03413496.patch";
+      sha256 = "14sfbfahlankz3xg6v10i8fnmpnmqpp73q9xm0l0hnjh25igv6bl";
+    })
+  ];
+
   nativeBuildInputs = [ autoreconfHook pkg-config ];
   buildInputs = [ librsync ncurses openssl zlib uthash ]
     ++ lib.optional (!stdenv.isDarwin) acl;