summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorSamuel Dionne-Riel <samuel@dionne-riel.com>2018-10-06 23:29:44 -0400
committerSamuel Dionne-Riel <samuel@dionne-riel.com>2018-10-06 23:29:44 -0400
commit65eb3e38e8842d1110a531ade7b09e890429367c (patch)
tree52e6311b14961fae3189f511b3f5ba24a54639c3 /pkgs/applications/editors
parent0a7e258012b60cbe530a756f09a4f2516786d370 (diff)
downloadnixlib-65eb3e38e8842d1110a531ade7b09e890429367c.tar
nixlib-65eb3e38e8842d1110a531ade7b09e890429367c.tar.gz
nixlib-65eb3e38e8842d1110a531ade7b09e890429367c.tar.bz2
nixlib-65eb3e38e8842d1110a531ade7b09e890429367c.tar.lz
nixlib-65eb3e38e8842d1110a531ade7b09e890429367c.tar.xz
nixlib-65eb3e38e8842d1110a531ade7b09e890429367c.tar.zst
nixlib-65eb3e38e8842d1110a531ade7b09e890429367c.zip
nano: 3.0 -> 3.1
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 9c50d8e8b78e..36c400a74faa 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 = "3.0";
+  version = "3.1";
 
   src = fetchurl {
     url = "mirror://gnu/nano/${name}.tar.xz";
-    sha256 = "1868hg9s584fwjrh0fzdrixmxc2qhw520z4q5iv68kjiajivr9g0";
+    sha256 = "17kinzyv6vwgyx2d0ym1kp65qbf7kxzwpyg21ic1rijv1aj2rh0l";
   };
 
   nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext;