summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2020-08-24 15:53:28 +0100
committerLancelot SIX <lsix@lancelotsix.com>2020-08-24 15:53:28 +0100
commit543701331ee643ddf645a7fff1ab7e79a4b8c922 (patch)
treec0c75da2128a7340c2189a2368faec37520d4160 /pkgs/applications/editors
parente467148f67725e58faf87f963461fb27a32cb9c3 (diff)
downloadnixpkgs-543701331ee643ddf645a7fff1ab7e79a4b8c922.tar
nixpkgs-543701331ee643ddf645a7fff1ab7e79a4b8c922.tar.gz
nixpkgs-543701331ee643ddf645a7fff1ab7e79a4b8c922.tar.bz2
nixpkgs-543701331ee643ddf645a7fff1ab7e79a4b8c922.tar.lz
nixpkgs-543701331ee643ddf645a7fff1ab7e79a4b8c922.tar.xz
nixpkgs-543701331ee643ddf645a7fff1ab7e79a4b8c922.tar.zst
nixpkgs-543701331ee643ddf645a7fff1ab7e79a4b8c922.zip
nano: 5.0 -> 5.2
See https://lists.gnu.org/archive/html/info-gnu/2020-08/msg00008.html
for release announcement.
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 13a0e797adc..244649f8663 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 = "5.0";
+  version = "5.2";
 
   src = fetchurl {
     url = "mirror://gnu/nano/${pname}-${version}.tar.xz";
-    sha256 = "0dmagj4p1llb1a2w0iwdrqbd9cgp0bda4s18vwh6y1ndd6z983bw";
+    sha256 = "1qd7pn9g5dgzbfg4fb3nqxqgi2iqq0g6x33x8d1mx6mfw51xmhij";
   };
 
   nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext;