aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/misc/rxvt_unicode
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2015-10-13 15:14:24 +0300
committerNikolay Amiantov <ab@fmap.me>2015-10-15 17:06:23 +0300
commit5877d74f03f8164af91850d439d7cc584c006d6e (patch)
tree43459d252107304240174c4a6513a10b8a09d729 /pkgs/applications/misc/rxvt_unicode
parent2a117cda417ca4b2e8a7243cccde164d3fca6364 (diff)
rxvt_unicode: add patch to fix Shift+PgUp/PgDown bug
Diffstat (limited to 'pkgs/applications/misc/rxvt_unicode')
-rw-r--r--pkgs/applications/misc/rxvt_unicode/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/applications/misc/rxvt_unicode/default.nix b/pkgs/applications/misc/rxvt_unicode/default.nix
index c1d74c247ce..325a42b70b1 100644
--- a/pkgs/applications/misc/rxvt_unicode/default.nix
+++ b/pkgs/applications/misc/rxvt_unicode/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, perlSupport, libX11, libXt, libXft, ncurses, perl,
+{ stdenv, fetchurl, fetchpatch, perlSupport, libX11, libXt, libXft, ncurses, perl,
fontconfig, freetype, pkgconfig, libXrender, gdkPixbufSupport, gdk_pixbuf,
unicode3Support }:
@@ -28,6 +28,10 @@ stdenv.mkDerivation (rec {
patches = [
./rxvt-unicode-9.06-font-width.patch
./rxvt-unicode-256-color-resources.patch
+ (fetchpatch {
+ url = "https://raw.githubusercontent.com/mina86/urxvt-tabbedex/ad4f54c8b8d3a01fc17975fd3fd14aa674c07d2b/rxvt-unicode-scroll-bug-fix.patch";
+ sha256 = "1ild0r6y7jb800yiss5pgd4k60s7l9njv3nn3x280yvg1lx6ihpg";
+ })
]
++ stdenv.lib.optional stdenv.isDarwin ./rxvt-unicode-makefile-phony.patch;