about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2019-10-07 07:39:33 +0200
committerGitHub <noreply@github.com>2019-10-07 07:39:33 +0200
commitbd3743fd560ca6683988035ea57bd4be0b9d6a9c (patch)
tree4519d4b474d8c14efceefb1303c1ef29fe7c3945 /pkgs/applications/editors
parent795b1555a88627f0739188081527f23259fcc1d2 (diff)
parent5b590f93e0e8bd6d1fd1f7220b9f3626b35db28d (diff)
downloadnixlib-bd3743fd560ca6683988035ea57bd4be0b9d6a9c.tar
nixlib-bd3743fd560ca6683988035ea57bd4be0b9d6a9c.tar.gz
nixlib-bd3743fd560ca6683988035ea57bd4be0b9d6a9c.tar.bz2
nixlib-bd3743fd560ca6683988035ea57bd4be0b9d6a9c.tar.lz
nixlib-bd3743fd560ca6683988035ea57bd4be0b9d6a9c.tar.xz
nixlib-bd3743fd560ca6683988035ea57bd4be0b9d6a9c.tar.zst
nixlib-bd3743fd560ca6683988035ea57bd4be0b9d6a9c.zip
Merge pull request #70404 from lsix/nano-4.5
nano: 4.4 -> 4.5
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 aea585ce8d66..15f251f5b093 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;