From d168db6ece8d050e78c22a606bf7995b4028eada Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Sun, 25 Aug 2019 15:37:22 +0200 Subject: [PATCH] nano: 4.3 -> 4.4 See https://lists.gnu.org/archive/html/info-gnu/2019-08/msg00006.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 d1ecaae373b..44f8c243bd6 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 = "4.3"; + version = "4.4"; src = fetchurl { url = "mirror://gnu/nano/${name}.tar.xz"; - sha256 = "108dzj6azqmini9bvgl26r0q1y59s3nnrw75hfzv91bs50davlq0"; + sha256 = "1iw2ypq34g1gfqyhgka2fz5yj5vrlz85q6zk7amgyj286ph25wia"; }; nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext;