From c52b42624d27ec058658a4df52a210d42add7cf7 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Fri, 5 May 2017 19:51:18 +0200 Subject: [PATCH] nano: 2.8.1 -> 2.8.2 See https://lists.gnu.org/archive/html/info-gnu/2017-05/msg00003.html for release information --- pkgs/applications/editors/nano/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/nano/default.nix b/pkgs/applications/editors/nano/default.nix index bfc3b7c79fa..a8c2f9c8558 100644 --- a/pkgs/applications/editors/nano/default.nix +++ b/pkgs/applications/editors/nano/default.nix @@ -20,11 +20,11 @@ let in stdenv.mkDerivation rec { name = "nano-${version}"; - version = "2.8.1"; + version = "2.8.2"; src = fetchurl { url = "mirror://gnu/nano/${name}.tar.xz"; - sha256 = "02vdnv30ms2s53ch5j4ldch5sxwjsg3098zkvwrwhi9k6yxshdg9"; + sha256 = "1q5rxkvsv974085xrd2k11ffazadabcb9cnpfra0shmj71xqlgh2"; }; nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext;