summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2017-11-28 13:58:40 +0100
committerLancelot SIX <lsix@lancelotsix.com>2017-11-28 13:58:40 +0100
commit366f1525ff47bfbee398eeac0cec0edd85e999ac (patch)
treefeac703c15eb0275c4a4185048a1c550d9dbae83 /pkgs/applications/editors
parentff7be8f807dc41c340ff9a21b49421da6ab87e71 (diff)
downloadnixlib-366f1525ff47bfbee398eeac0cec0edd85e999ac.tar
nixlib-366f1525ff47bfbee398eeac0cec0edd85e999ac.tar.gz
nixlib-366f1525ff47bfbee398eeac0cec0edd85e999ac.tar.bz2
nixlib-366f1525ff47bfbee398eeac0cec0edd85e999ac.tar.lz
nixlib-366f1525ff47bfbee398eeac0cec0edd85e999ac.tar.xz
nixlib-366f1525ff47bfbee398eeac0cec0edd85e999ac.tar.zst
nixlib-366f1525ff47bfbee398eeac0cec0edd85e999ac.zip
nano: 2.9.0 -> 2.9.1
See http://lists.gnu.org/archive/html/info-gnu/2017-11/msg00012.html
for release information
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 0663cca53b9f..35396b96ea75 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.9.0";
+  version = "2.9.1";
 
   src = fetchurl {
     url = "mirror://gnu/nano/${name}.tar.xz";
-    sha256 = "17hjgvig59a2ha2b0494bprrci3d33sayjqvxjhsnlzgr8whrlyj";
+    sha256 = "0z5sxji8jh8sh0g3inbzndhsrbm4qyqlvjrxl5wkxbr61lnxa5k3";
   };
 
   nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext;