about summary refs log tree commit diff
path: root/pkgs/applications/editors/nano
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2021-03-03 22:09:22 +0000
committerLancelot SIX <lsix@lancelotsix.com>2021-03-03 22:09:22 +0000
commitf5637361e190a6d13f6045855b310a5a7620869b (patch)
tree9cdfddad0a210e7a25bb2f1d639de123018d4bd0 /pkgs/applications/editors/nano
parent93ea4e0102bd979c05f038d885179e1a34c0194f (diff)
nano: 5.6 -> 5.6.1
See https://lists.gnu.org/archive/html/info-gnu/2021-03/msg00000.html
for release infromation
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 30d1e5b75787d..b55252855662b 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";
+  version = "5.6.1";
 
   src = fetchurl {
     url = "mirror://gnu/nano/${pname}-${version}.tar.xz";
-    sha256 = "0ckscf3klm2k1zjvcv8mkza1yp80g7ss56n73790fk83lzj87qgw";
+    sha256 = "02cbxqizbdlfwnz8dpq4fbzmdi4yk6fv0cragvpa0748w1cp03bn";
   };
 
   nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext;