summary refs log tree commit diff
path: root/pkgs/applications/editors/nano
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2020-04-07 14:40:47 +0100
committerLancelot SIX <lsix@lancelotsix.com>2020-04-07 14:40:47 +0100
commitf6540c8085d5b351b5c3acf41b23d6c99e6157bb (patch)
tree64ae524f479b318712bf5a955fb626df20590b06 /pkgs/applications/editors/nano
parentd7b98129fea1ed08a645096b16c424e3cabf77e5 (diff)
nano: 4.9.1 -> 4.9.2
See https://lists.gnu.org/archive/html/info-gnu/2020-04/msg00001.html
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 e3c315275dd5d..005c05d8abf87 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 = "4.9.1";
+  version = "4.9.2";
 
   src = fetchurl {
     url = "mirror://gnu/nano/${pname}-${version}.tar.xz";
-    sha256 = "0v5s58j3lbg5s6gapl9kjmzph7zgwaam53qspycy2sxaxw65mkaj";
+    sha256 = "1xifbn1xaklrrf7knxvqif0hy0wgnas7w0wfggay5kifjkm5x8nq";
   };
 
   nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext;