From 3936f9b5de09923caa0cf1b1a8d1b03b296c52b9 Mon Sep 17 00:00:00 2001 From: K900 Date: Fri, 21 Mar 2025 09:45:56 +0300 Subject: [PATCH] editline-lix: drop patch that's now included in nixpkgs Change-Id: Ib53e6bb5e83f6bf163b29357712cd624b2c24057 --- package.nix | 8 -------- 1 file changed, 8 deletions(-) diff --git a/package.nix b/package.nix index 7806bbe85..31fc68145 100644 --- a/package.nix +++ b/package.nix @@ -87,14 +87,6 @@ boehmgc-nix = boehmgc.override { enableLargeConfig = true; }; editline-lix = editline.overrideAttrs (prev: { - patches = (prev.patches or [ ]) ++ [ - # Recognize `Alt-Left` and `Alt-Right` for navigating by words in more - # terminals/shells/platforms. - # - # See: https://github.com/troglobit/editline/pull/70 - ./nix-support/editline.patch - ]; - configureFlags = (prev.configureFlags or [ ]) ++ [ # Enable SIGSTOP (Ctrl-Z) behavior. (lib.enableFeature true "sigstop")