tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
rxvt_unicode: add patch to fix Shift+PgUp/PgDown bug
Nikolay Amiantov
10 years ago
5877d74f
2a117cda
+5
-1
1 changed file
expand all
collapse all
unified
split
pkgs
applications
misc
rxvt_unicode
default.nix
+5
-1
pkgs/applications/misc/rxvt_unicode/default.nix
···
1
-
{ stdenv, fetchurl, perlSupport, libX11, libXt, libXft, ncurses, perl,
2
fontconfig, freetype, pkgconfig, libXrender, gdkPixbufSupport, gdk_pixbuf,
3
unicode3Support }:
4
···
28
patches = [
29
./rxvt-unicode-9.06-font-width.patch
30
./rxvt-unicode-256-color-resources.patch
0
0
0
0
31
]
32
++ stdenv.lib.optional stdenv.isDarwin ./rxvt-unicode-makefile-phony.patch;
33
···
1
+
{ stdenv, fetchurl, fetchpatch, perlSupport, libX11, libXt, libXft, ncurses, perl,
2
fontconfig, freetype, pkgconfig, libXrender, gdkPixbufSupport, gdk_pixbuf,
3
unicode3Support }:
4
···
28
patches = [
29
./rxvt-unicode-9.06-font-width.patch
30
./rxvt-unicode-256-color-resources.patch
31
+
(fetchpatch {
32
+
url = "https://raw.githubusercontent.com/mina86/urxvt-tabbedex/ad4f54c8b8d3a01fc17975fd3fd14aa674c07d2b/rxvt-unicode-scroll-bug-fix.patch";
33
+
sha256 = "1ild0r6y7jb800yiss5pgd4k60s7l9njv3nn3x280yvg1lx6ihpg";
34
+
})
35
]
36
++ stdenv.lib.optional stdenv.isDarwin ./rxvt-unicode-makefile-phony.patch;
37