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:
parent
6de51d98ec
commit
fda42f1bee
@ -26,6 +26,8 @@ stdenv.mkDerivation rec {
|
||||
})
|
||||
];
|
||||
|
||||
configureFlags = [ (lib.enableFeature true "sigstop") ];
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
|
||||
outputs = [ "out" "dev" "man" "doc" ];
|
||||
|
Loading…
Reference in New Issue
Block a user