cca2d27de2
See https://lists.gnu.org/archive/html/info-gnu/2021-06/msg00006.html for release information.
82 lines
2.3 KiB
Nix
82 lines
2.3 KiB
Nix
{ lib, stdenv, fetchurl, fetchFromGitHub, ncurses, texinfo, writeScript
|
|
, common-updater-scripts, git, nix, nixfmt, coreutils, gnused, nixosTests
|
|
, gettext ? null, enableNls ? true, enableTiny ? false }:
|
|
|
|
assert enableNls -> (gettext != null);
|
|
|
|
with lib;
|
|
|
|
let
|
|
nixSyntaxHighlight = fetchFromGitHub {
|
|
owner = "seitz";
|
|
repo = "nanonix";
|
|
rev = "bf8d898efaa10dce3f7972ff765b58c353b4b4ab";
|
|
sha256 = "0773s5iz8aw9npgyasb0r2ybp6gvy2s9sq51az8w7h52bzn5blnn";
|
|
};
|
|
|
|
in stdenv.mkDerivation rec {
|
|
pname = "nano";
|
|
version = "5.8";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/nano/${pname}-${version}.tar.xz";
|
|
sha256 = "133nhxg4xfxisjzi85rn2l575hdbvcax1s13l4m6wcvq5zdn6fz4";
|
|
};
|
|
|
|
nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext;
|
|
buildInputs = [ ncurses ];
|
|
|
|
outputs = [ "out" "info" ];
|
|
|
|
configureFlags = [
|
|
"--sysconfdir=/etc"
|
|
(lib.enableFeature enableNls "nls")
|
|
(lib.enableFeature enableTiny "tiny")
|
|
];
|
|
|
|
postInstall = ''
|
|
cp ${nixSyntaxHighlight}/nix.nanorc $out/share/nano/
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru = {
|
|
tests = { inherit (nixosTests) nano; };
|
|
|
|
updateScript = writeScript "update.sh" ''
|
|
#!${stdenv.shell}
|
|
set -o errexit
|
|
PATH=${
|
|
lib.makeBinPath [
|
|
common-updater-scripts
|
|
git
|
|
nixfmt
|
|
nix
|
|
coreutils
|
|
gnused
|
|
]
|
|
}
|
|
|
|
oldVersion="$(nix-instantiate --eval -E "with import ./. {}; lib.getVersion ${pname}" | tr -d '"')"
|
|
latestTag="$(git -c 'versionsort.suffix=-' ls-remote --exit-code --refs --sort='version:refname' --tags git://git.savannah.gnu.org/nano.git '*' | tail --lines=1 | cut --delimiter='/' --fields=3 | sed 's|^v||g')"
|
|
|
|
if [ ! "$oldVersion" = "$latestTag" ]; then
|
|
update-source-version ${pname} "$latestTag" --version-key=version --print-changes
|
|
nixpkgs="$(git rev-parse --show-toplevel)"
|
|
default_nix="$nixpkgs/pkgs/applications/editors/nano/default.nix"
|
|
nixfmt "$default_nix"
|
|
else
|
|
echo "${pname} is already up-to-date"
|
|
fi
|
|
'';
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://www.nano-editor.org/";
|
|
description = "A small, user-friendly console text editor";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ joachifm nequissimus ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|