summary refs log tree commit diff
path: root/pkgs/applications/editors/nano
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2022-08-14 12:57:48 +0100
committerSergei Trofimovich <slyich@gmail.com>2022-08-14 12:57:48 +0100
commit96958813c322ed90e67ffb0586b653d86bcc3f6f (patch)
tree458d1b2572864c056d3c1d52ea58a51786078b61 /pkgs/applications/editors/nano
parent5c37f7fa7e6571cbd86d690e8a662809b6f0df06 (diff)
nano: 6.3 -> 6.4
Changes: https://lists.gnu.org/archive/html/info-gnu/2022-08/msg00001.html
Diffstat (limited to 'pkgs/applications/editors/nano')
-rw-r--r--pkgs/applications/editors/nano/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/nano/default.nix b/pkgs/applications/editors/nano/default.nix
index 20b18814cb755..5d4d84e6fe9b9 100644
--- a/pkgs/applications/editors/nano/default.nix
+++ b/pkgs/applications/editors/nano/default.nix
@@ -16,11 +16,11 @@ let
 
 in stdenv.mkDerivation rec {
   pname = "nano";
-  version = "6.3";
+  version = "6.4";
 
   src = fetchurl {
     url = "mirror://gnu/nano/${pname}-${version}.tar.xz";
-    sha256 = "61MtpJhWcnMLUA9oXbqriFpGbQj7v3QVgyuVgF5vhoc=";
+    sha256 = "QZmujKeKd5beVt4aQbgh3EeRLAMH6YFrVswxffNGYcA=";
   };
 
   nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext;