summary refs log tree commit diff
path: root/pkgs/applications/editors/nano
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2020-05-26 13:33:47 +0100
committerLancelot SIX <lsix@lancelotsix.com>2020-05-26 13:33:47 +0100
commit2061fb5ba20ebf8716a9bc20aa89178718de385b (patch)
tree85ccb21f2cb35955a8d5ae49386e54ff73a95437 /pkgs/applications/editors/nano
parent9f11766df5b9b4cf25bcb0d77848006cce0e5465 (diff)
nano: 4.9.2 -> 4.9.3
See https://lists.gnu.org/archive/html/info-gnu/2020-05/msg00007.html
for release information
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 034845d3da69b..e2f041d0fd56e 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.2";
+  version = "4.9.3";
 
   src = fetchurl {
     url = "mirror://gnu/nano/${pname}-${version}.tar.xz";
-    sha256 = "1xifbn1xaklrrf7knxvqif0hy0wgnas7w0wfggay5kifjkm5x8nq";
+    sha256 = "1d2i3wvsq5lvpxxinq51dcvd58xx7j0d0c2csz9hgvd06gq3hd3f";
   };
 
   nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext;