nnn: 5.0 -> 5.1

This commit is contained in:
R. Ryantm 2025-03-23 07:42:53 +00:00 committed by Nikolay Korotkiy
parent f9ec383a10
commit 3428a5ced6
No known key found for this signature in database
GPG Key ID: D1DE6D7F693663A5

View File

@ -28,13 +28,13 @@ assert withEmojis -> (!withIcons && !withNerdIcons);
stdenv.mkDerivation (finalAttrs: {
pname = "nnn";
version = "5.0";
version = "5.1";
src = fetchFromGitHub {
owner = "jarun";
repo = "nnn";
rev = "v${finalAttrs.version}";
hash = "sha256-HShHSjqD0zeE1/St1Y2dUeHfac6HQnPFfjmFvSuEXUA=";
tag = "v${finalAttrs.version}";
hash = "sha256-+2lFFBtaqRPBkEspCFtKl9fllbSR5MBB+4ks3Xh7vp4=";
};
patches = [
@ -93,13 +93,13 @@ stdenv.mkDerivation (finalAttrs: {
wrapProgram $out/bin/nnn --prefix PATH : "$binPath"
'';
meta = with lib; {
meta = {
description = "Small ncurses-based file browser forked from noice";
homepage = "https://github.com/jarun/nnn";
changelog = "https://github.com/jarun/nnn/blob/v${finalAttrs.version}/CHANGELOG";
license = licenses.bsd2;
platforms = platforms.all;
maintainers = with maintainers; [ Br1ght0ne ];
license = lib.licenses.bsd2;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ Br1ght0ne ];
mainProgram = "nnn";
};
})