about summary refs log tree commit diff
path: root/pkgs/applications/editors/nano
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2021-06-15 15:14:22 +0100
committerLancelot SIX <lsix@lancelotsix.com>2021-06-15 15:14:22 +0100
commitcca2d27de2f6b4ece1d9918493704650f5c7afab (patch)
tree5e0e135876a3a326ece25645ff80451c606ff6cb /pkgs/applications/editors/nano
parent16b157c3462f547e989faf7a74203bf0f44a9c94 (diff)
nano: 5.7 -> 5.8
See https://lists.gnu.org/archive/html/info-gnu/2021-06/msg00006.html
for release information.
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 1a92ca3decbb1..bd61933b38d7e 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.7";
+  version = "5.8";
 
   src = fetchurl {
     url = "mirror://gnu/nano/${pname}-${version}.tar.xz";
-    sha256 = "1ynarilx0ca0a5h6hl5bf276cymyy8s9wr5l24vyy7f15v683cfl";
+    sha256 = "133nhxg4xfxisjzi85rn2l575hdbvcax1s13l4m6wcvq5zdn6fz4";
   };
 
   nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext;