nixpkgs/pkgs/applications/editors/nano/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

82 lines
2.3 KiB
Nix
Raw Normal View History

2021-01-15 14:21:58 +01:00
{ lib, stdenv, fetchurl, fetchFromGitHub, ncurses, texinfo, writeScript
, common-updater-scripts, git, nix, nixfmt, coreutils, gnused, callPackage
2020-11-16 19:59:36 +01:00
, gettext ? null, enableNls ? true, enableTiny ? false }:
2015-03-25 23:21:44 +01:00
assert enableNls -> (gettext != null);
2021-01-15 14:21:58 +01:00
with lib;
let
nixSyntaxHighlight = fetchFromGitHub {
owner = "seitz";
repo = "nanonix";
rev = "bf8d898efaa10dce3f7972ff765b58c353b4b4ab";
sha256 = "0773s5iz8aw9npgyasb0r2ybp6gvy2s9sq51az8w7h52bzn5blnn";
};
2017-03-19 22:36:48 +01:00
in stdenv.mkDerivation rec {
pname = "nano";
2022-12-16 11:43:45 +01:00
version = "7.1";
2017-04-05 03:04:39 +02:00
src = fetchurl {
url = "mirror://gnu/nano/${pname}-${version}.tar.xz";
2022-12-16 11:43:45 +01:00
sha256 = "V7p1Hpt1GfD23e5QUgLjh8dd3kQMH3qhuTEMw4FAaDY=";
};
2017-03-19 22:36:48 +01:00
nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext;
buildInputs = [ ncurses ];
2017-04-05 03:04:39 +02:00
outputs = [ "out" "info" ];
2017-04-05 03:04:39 +02:00
configureFlags = [
"--sysconfdir=/etc"
2021-01-15 14:21:58 +01:00
(lib.enableFeature enableNls "nls")
(lib.enableFeature enableTiny "tiny")
];
2015-03-27 20:05:19 +01:00
postInstall = ''
cp ${nixSyntaxHighlight}/nix.nanorc $out/share/nano/
'';
enableParallelBuilding = true;
2020-11-16 18:56:38 +01:00
passthru = {
2022-05-06 16:45:24 +02:00
tests = { expect = callPackage ./test-with-expect.nix { }; };
2020-11-16 19:59:36 +01:00
2020-11-16 18:56:38 +01:00
updateScript = writeScript "update.sh" ''
#!${stdenv.shell}
set -o errexit
PATH=${
2021-01-15 14:21:58 +01:00
lib.makeBinPath [
2020-11-16 18:56:38 +01:00
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
'';
};
2015-03-25 23:21:44 +01:00
meta = {
homepage = "https://www.nano-editor.org/";
description = "A small, user-friendly console text editor";
license = licenses.gpl3Plus;
2020-11-16 19:59:36 +01:00
maintainers = with maintainers; [ joachifm nequissimus ];
platforms = platforms.all;
};
}