editline: enable sigstop

SIGSTOP is send when a user presses CTRL-Z.
It will send the application to the background.
Without this option, ctrl-z will be ignored.
With this option, it's possible to suspend
editline-based applications such as Nix.
This commit is contained in:
Jörg Thalheim 2024-05-25 20:47:16 +02:00
parent 6de51d98ec
commit fda42f1bee

View File

@ -26,6 +26,8 @@ stdenv.mkDerivation rec {
})
];
configureFlags = [ (lib.enableFeature true "sigstop") ];
nativeBuildInputs = [ autoreconfHook ];
outputs = [ "out" "dev" "man" "doc" ];