summary refs log tree commit diff
path: root/pkgs/applications/editors/nano
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2017-07-21 17:02:31 +0200
committerLancelot SIX <lsix@lancelotsix.com>2017-07-21 17:02:31 +0200
commit60091342d44b6e732a79a4caf7e9b0fee5b51903 (patch)
tree0772b6fa3667009e4747f0d3e0851fdd840418cd /pkgs/applications/editors/nano
parent1697684591492102ba8705f62fb2509b44ad1935 (diff)
downloadnixlib-60091342d44b6e732a79a4caf7e9b0fee5b51903.tar
nixlib-60091342d44b6e732a79a4caf7e9b0fee5b51903.tar.gz
nixlib-60091342d44b6e732a79a4caf7e9b0fee5b51903.tar.bz2
nixlib-60091342d44b6e732a79a4caf7e9b0fee5b51903.tar.lz
nixlib-60091342d44b6e732a79a4caf7e9b0fee5b51903.tar.xz
nixlib-60091342d44b6e732a79a4caf7e9b0fee5b51903.tar.zst
nixlib-60091342d44b6e732a79a4caf7e9b0fee5b51903.zip
nano: 2.8.5 -> 2.8.6
See http://lists.gnu.org/archive/html/info-gnu/2017-07/msg00007.html
for release announcement
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 f3527d85fd7f..d924532eb340 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.5";
+  version = "2.8.6";
 
   src = fetchurl {
     url = "mirror://gnu/nano/${name}.tar.xz";
-    sha256 = "1hl9gni3qmblr062a7w6vz16gvxbswgc5c19c923ja0bk48vyhyb";
+    sha256 = "0xjpm2ka56x5ycrgjh06v110na13xlbm42bs8qibk7g578m9cils";
   };
 
   nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext;