ranger: 1.9.{3 - > 4}-unstable-2025-11-14, fix updateScript

unstableGitUpdater incorrectly kept 1.9.3 tag, while 1.9.4 has existed
for a year now
This commit is contained in:
Acid Bong
2025-11-29 12:20:32 +02:00
parent 3be9ae5433
commit 11e3087acf
+5 -3
View File
@@ -14,12 +14,12 @@
neoVimSupport ? true,
improvedEncodingDetection ? true,
rightToLeftTextSupport ? false,
unstableGitUpdater,
nix-update-script,
}:
python3Packages.buildPythonApplication {
pname = "ranger";
version = "1.9.3-unstable-2025-11-14";
version = "1.9.4-unstable-2025-11-14";
pyproject = true;
src = fetchFromGitHub {
@@ -82,7 +82,9 @@ python3Packages.buildPythonApplication {
--replace "set preview_images false" "set preview_images true"
'';
passthru.updateScript = unstableGitUpdater { tagPrefix = "v"; };
passthru.updateScript = nix-update-script {
extraArgs = [ "--version=branch" ];
};
meta = {
description = "File manager with minimalistic curses interface";