irssi: fix GLib > 2.62 breaking input on nul byte
See https://github.com/irssi/irssi/issues/1180 for rationale
This commit is contained in:
parent
e3597057e7
commit
adb6f51529
@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchurl, pkg-config, ncurses, glib, openssl, perl, libintl, libgcrypt, libotr }:
|
||||
{ lib, stdenv, fetchurl, fetchpatch, pkg-config, ncurses, glib, openssl, perl, libintl, libgcrypt, libotr }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "irssi";
|
||||
@ -9,6 +9,13 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "0g2nxazn4lszmd6mf1s36x5ablk4999g1qx7byrnvgnjsihjh62k";
|
||||
};
|
||||
|
||||
# Fix irssi on GLib >2.62 input being stuck after entering a NUL byte
|
||||
# See https://github.com/irssi/irssi/issues/1180 - remove after next update.
|
||||
patches = fetchpatch {
|
||||
url = "https://github.com/irssi/irssi/releases/download/1.2.2/glib-2-63.patch";
|
||||
sha256 = "1ad1p7395n8dfmv97wrf751wwzgncqfh9fp27kq5kfdvh661da1i";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ ncurses glib openssl perl libintl libgcrypt libotr ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user