Update lix to 2.93

This commit is contained in:
Natsu Kagami 2025-05-11 15:01:56 -04:00
parent fa8c6cd899
commit 785815f107
Signed by: nki
GPG key ID: 55A032EB38B49ADB
4 changed files with 15 additions and 30 deletions

View file

@ -82,21 +82,6 @@ let
attrs.postFixup;
});
editline-lix =
assert final.lib.assertMsg (final.lix.version == "2.92.0") "we only need to patch this for 2.92";
final.editline.overrideAttrs (prev: {
configureFlags = (prev.configureFlags or [ ]) ++ [
# Enable SIGSTOP (Ctrl-Z) behavior.
(final.lib.enableFeature true "sigstop")
# Enable ANSI arrow keys.
(final.lib.enableFeature true "arrow-keys")
# Use termcap library to query terminal size.
(final.lib.enableFeature true "termcap")
];
propagatedBuildInputs = (prev.propagatedBuildInputs or [ ]) ++ [ final.ncurses ];
});
rofi-wayland-unwrapped =
assert final.lib.assertMsg
(builtins.compareVersions prev.rofi-wayland-unwrapped.version "1.7.8+wayland1" <= 0)