summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2017-04-12 15:44:18 +0200
committerDaiderd Jordan <daiderd@gmail.com>2017-04-14 18:54:18 +0200
commit9a10e5ae462bcbaeae7e556695b9329eba4cb72a (patch)
tree25d3df4962ece4bd8815aeca6ca282b3a3e35325 /pkgs
parentb6f88093a21efdf3cc24ac716015b4db5e9e3df0 (diff)
downloadnixlib-9a10e5ae462bcbaeae7e556695b9329eba4cb72a.tar
nixlib-9a10e5ae462bcbaeae7e556695b9329eba4cb72a.tar.gz
nixlib-9a10e5ae462bcbaeae7e556695b9329eba4cb72a.tar.bz2
nixlib-9a10e5ae462bcbaeae7e556695b9329eba4cb72a.tar.lz
nixlib-9a10e5ae462bcbaeae7e556695b9329eba4cb72a.tar.xz
nixlib-9a10e5ae462bcbaeae7e556695b9329eba4cb72a.tar.zst
nixlib-9a10e5ae462bcbaeae7e556695b9329eba4cb72a.zip
nano: 2.8.0 -> 2.8.1
See http://lists.gnu.org/archive/html/info-gnu/2017-04/msg00005.html
for release announcement

(cherry picked from commit 474d112b7a942afd9206e0f8a81b6ba9bb9b95bc)
Diffstat (limited to 'pkgs')
-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 cd220a4bd7e3..bfc3b7c79faf 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.0";
+  version = "2.8.1";
 
   src = fetchurl {
     url = "mirror://gnu/nano/${name}.tar.xz";
-    sha256 = "1hjxr0kgq3q1fcns9y4lj0dbhjf33j3pa2wayrb3p3c8v3sbrh8m";
+    sha256 = "02vdnv30ms2s53ch5j4ldch5sxwjsg3098zkvwrwhi9k6yxshdg9";
   };
 
   nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext;