summary refs log tree commit diff
path: root/pkgs/applications/editors/nano
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2020-10-07 15:23:24 +0100
committerLancelot SIX <lsix@lancelotsix.com>2020-10-07 15:23:24 +0100
commitb9ff5179831aa16248ffb28de48c45da32e71407 (patch)
treec3f9091571c162d9374ce4f2b5dabc40fe92ee38 /pkgs/applications/editors/nano
parent9cc924a12a5c37cf9b19a927f399d66f94cf5588 (diff)
nano: 5.2 -> 5.3
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 244649f8663ee..6909af712fa03 100644
--- a/pkgs/applications/editors/nano/default.nix
+++ b/pkgs/applications/editors/nano/default.nix
@@ -20,11 +20,11 @@ let
 
 in stdenv.mkDerivation rec {
   pname = "nano";
-  version = "5.2";
+  version = "5.3";
 
   src = fetchurl {
     url = "mirror://gnu/nano/${pname}-${version}.tar.xz";
-    sha256 = "1qd7pn9g5dgzbfg4fb3nqxqgi2iqq0g6x33x8d1mx6mfw51xmhij";
+    sha256 = "0lj3fcfzprmv9raydx8yq25lw81bs6g40rhd0fv9d6idcb7wphf5";
   };
 
   nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext;