about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2017-08-29 12:42:00 +0200
committerLancelot SIX <lsix@lancelotsix.com>2017-08-29 12:42:00 +0200
commit501278bbd4f275603ac20ee3a11e2ef6c4de2616 (patch)
treed63c982f888b80cc74aa221264f9fe97867bef6e /pkgs/applications/editors
parent4b8435dceeeb2fd4bf69da2d9271641d599c34c3 (diff)
downloadnixlib-501278bbd4f275603ac20ee3a11e2ef6c4de2616.tar
nixlib-501278bbd4f275603ac20ee3a11e2ef6c4de2616.tar.gz
nixlib-501278bbd4f275603ac20ee3a11e2ef6c4de2616.tar.bz2
nixlib-501278bbd4f275603ac20ee3a11e2ef6c4de2616.tar.lz
nixlib-501278bbd4f275603ac20ee3a11e2ef6c4de2616.tar.xz
nixlib-501278bbd4f275603ac20ee3a11e2ef6c4de2616.tar.zst
nixlib-501278bbd4f275603ac20ee3a11e2ef6c4de2616.zip
nano: 2.8.6 -> 2.8.7
See http://lists.gnu.org/archive/html/info-gnu/2017-08/msg00010.html
for release announcement
Diffstat (limited to 'pkgs/applications/editors')
-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 3cb53a6116b6..441c157a3498 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.6";
+  version = "2.8.7";
 
   src = fetchurl {
     url = "mirror://gnu/nano/${name}.tar.xz";
-    sha256 = "0xjpm2ka56x5ycrgjh06v110na13xlbm42bs8qibk7g578m9cils";
+    sha256 = "0nhns59smd43mad2w6lnaxqnj4h6ifnlivi6cwydg646jm31gqzv";
   };
 
   nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext;