nano: 9.1 -> 9.2

Changelog:
- Nano refuses to start when standard output is not a terminal.
- Options --newbuffer and 'set newbuffer' were added as better
  synonyms of --multibuffer and 'set multibuffer'.
- Legacy keystroke pairs ^W^T and ^/^T are recognized again.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
(cherry picked from commit 23a0a2fc2d)
This commit is contained in:
Fernando Rodrigues
2026-08-01 22:09:17 +10:00
committed by github-actions[bot]
parent 5c7a0153d3
commit 7e20c9ec2e

View File

@@ -31,11 +31,11 @@ let
in
stdenv.mkDerivation rec {
pname = "nano";
version = "9.1";
version = "9.2";
src = fetchurl {
url = "mirror://gnu/nano/nano-${version}.tar.xz";
hash = "sha256-X0d2QnTLdTI0nOCqIOwQ8ejoUabp+j62aBLEPRltsEI=";
hash = "sha256-Bey5kke3guils6Je1BAd0DSwI2kC90SbyXlbcXZC9+k=";
};
nativeBuildInputs = [ texinfo ] ++ lib.optional enableNls gettext;