summary refs log tree commit diff
path: root/pkgs/applications/editors/nano
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2018-11-12 10:28:20 +0100
committerLancelot SIX <lsix@lancelotsix.com>2018-11-12 10:28:20 +0100
commit6c3b9c359dc0f5edef08c66f747bc3a20a6d8d00 (patch)
tree9279763931e6dd1dc15d3029ece49b7b7b265d9d /pkgs/applications/editors/nano
parent49df3150c71aee580c9a04c3482ad4b7d0552516 (diff)
nano: 3.1 -> 3.2
See http://lists.gnu.org/archive/html/info-gnu/2018-11/msg00008.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 36c400a74faab..0e313d33736ae 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 = "3.1";
+  version = "3.2";
 
   src = fetchurl {
     url = "mirror://gnu/nano/${name}.tar.xz";
-    sha256 = "17kinzyv6vwgyx2d0ym1kp65qbf7kxzwpyg21ic1rijv1aj2rh0l";
+    sha256 = "0jb3zq0v84xb0chyynkcp2jhs9660wmpkic294p4p6c96npp69yi";
   };
 
   nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext;