nano: 7.2 -> 8.0

Changes: https://www.nano-editor.org/news.php
This commit is contained in:
Sergei Trofimovich 2024-05-04 21:30:26 +01:00 committed by Emery Hemingway
parent c16af617a8
commit fac6b8cf3a

View File

@ -1,6 +1,7 @@
{ lib, stdenv, fetchurl, fetchFromGitHub, ncurses, texinfo, writeScript
, common-updater-scripts, git, nix, nixfmt-classic, coreutils, gnused, callPackage
, file ? null, gettext ? null, enableNls ? true, enableTiny ? false }:
, common-updater-scripts, git, nix, nixfmt-classic, coreutils, gnused
, callPackage, file ? null, gettext ? null, enableNls ? true, enableTiny ? false
}:
assert enableNls -> (gettext != null);
@ -14,11 +15,11 @@ let
in stdenv.mkDerivation rec {
pname = "nano";
version = "7.2";
version = "8.0";
src = fetchurl {
url = "mirror://gnu/nano/${pname}-${version}.tar.xz";
sha256 = "hvNEJ2i9KHPOxpP4PN+AtLRErTzBR2C3Q2FHT8h6RSY=";
sha256 = "wX9D/A43M2sz7lCiCccB1b64CK3C2fCJyoMbQFOcmsQ=";
};
nativeBuildInputs = [ texinfo ] ++ lib.optional enableNls gettext;
@ -32,7 +33,9 @@ in stdenv.mkDerivation rec {
(lib.enableFeature enableTiny "tiny")
];
postInstall = if enableTiny then null else ''
postInstall = if enableTiny then
null
else ''
cp ${nixSyntaxHighlight}/nix.nanorc $out/share/nano/
'';