about summary refs log tree commit diff
path: root/pkgs/applications/editors/nano
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2021-04-29 14:30:34 +0100
committerLancelot SIX <lsix@lancelotsix.com>2021-04-29 20:05:00 +0100
commitd13741eb79c94f54105f573dbb5f27b285f46708 (patch)
tree05742e8d054b04bbcf8917587ec026fb8179d802 /pkgs/applications/editors/nano
parent2bd34a98af6bcb759030a9fba3a2565c65fe6725 (diff)
nano: 5.6.1 -> 5.7
See https://lists.gnu.org/archive/html/info-gnu/2021-04/msg00013.html for release
announcement.
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 b55252855662b..1a92ca3decbb1 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 = "5.6.1";
+  version = "5.7";
 
   src = fetchurl {
     url = "mirror://gnu/nano/${pname}-${version}.tar.xz";
-    sha256 = "02cbxqizbdlfwnz8dpq4fbzmdi4yk6fv0cragvpa0748w1cp03bn";
+    sha256 = "1ynarilx0ca0a5h6hl5bf276cymyy8s9wr5l24vyy7f15v683cfl";
   };
 
   nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext;