about summary refs log tree commit diff
path: root/pkgs/applications/editors/nano
diff options
context:
space:
mode:
authorJascha Geerds <jascha@jgeerds.name>2016-10-29 22:42:18 +0200
committerJascha Geerds <jascha@jgeerds.name>2016-10-29 22:43:27 +0200
commite789ba3d09bcc56d04ce6d222181fd7fb5cce82b (patch)
tree1c94fe6c647b8b16034e08cfcb9938f76fdcf83a /pkgs/applications/editors/nano
parent33397d6f597332faefc36f143862e308ef7f1fec (diff)
nano: 2.7.0 -> 2.7.1
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 faef945c417be..341b8063f66ff 100644
--- a/pkgs/applications/editors/nano/default.nix
+++ b/pkgs/applications/editors/nano/default.nix
@@ -12,10 +12,10 @@ with stdenv.lib;
 
 stdenv.mkDerivation rec {
   name = "nano-${version}";
-  version = "2.7.0";
+  version = "2.7.1";
   src = fetchurl {
     url = "mirror://gnu/nano/${name}.tar.xz";
-    sha256 = "08cmnca3s377z74yjw1afz59l2h9s40wsa9wxw5y4x5f2jaz6spq";
+    sha256 = "1kapx0fyp0a0pvsdd1n59pm3acrimdrp7ciglg098wqxhdlvwp6z";
   };
   nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext;
   buildInputs = [ ncurses ];