summary refs log tree commit diff
path: root/pkgs/applications/editors/nano
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2019-10-04 16:48:30 +0200
committerLancelot SIX <lsix@lancelotsix.com>2019-10-04 16:48:30 +0200
commit5b590f93e0e8bd6d1fd1f7220b9f3626b35db28d (patch)
treed02e17554ff7ccb865d5d9bc60f45a6f0083c310 /pkgs/applications/editors/nano
parent974855c896be9652f9f9e475c021c17255013a4f (diff)
downloadnixpkgs-5b590f93e0e8bd6d1fd1f7220b9f3626b35db28d.tar
nixpkgs-5b590f93e0e8bd6d1fd1f7220b9f3626b35db28d.tar.gz
nixpkgs-5b590f93e0e8bd6d1fd1f7220b9f3626b35db28d.tar.bz2
nixpkgs-5b590f93e0e8bd6d1fd1f7220b9f3626b35db28d.tar.lz
nixpkgs-5b590f93e0e8bd6d1fd1f7220b9f3626b35db28d.tar.xz
nixpkgs-5b590f93e0e8bd6d1fd1f7220b9f3626b35db28d.tar.zst
nixpkgs-5b590f93e0e8bd6d1fd1f7220b9f3626b35db28d.zip
nano: 4.4 -> 4.5
See https://lists.gnu.org/archive/html/info-gnu/2019-10/msg00001.html
for release information.
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 aea585ce8d6..15f251f5b09 100644
--- a/pkgs/applications/editors/nano/default.nix
+++ b/pkgs/applications/editors/nano/default.nix
@@ -20,11 +20,11 @@ let
 
 in stdenv.mkDerivation rec {
   pname = "nano";
-  version = "4.4";
+  version = "4.5";
 
   src = fetchurl {
     url = "mirror://gnu/nano/${pname}-${version}.tar.xz";
-    sha256 = "1iw2ypq34g1gfqyhgka2fz5yj5vrlz85q6zk7amgyj286ph25wia";
+    sha256 = "0czmz1yq8s5qcxcmfjdxzg9nkhbmlc9q1nz04jvf57fdbs7w7mfy";
   };
 
   nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext;