Skip to content

Commit

Permalink
ranger: 1.9.3-unstable-2023-08-23 -> 1.9.4, update script, tag in src…
Browse files Browse the repository at this point in the history
…, rm with lib (NixOS#368588)
  • Loading branch information
thiagokokada authored Dec 29, 2024
2 parents 82d82c9 + e27a443 commit 411d145
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions pkgs/by-name/ra/ranger/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,18 @@
neoVimSupport ? true,
improvedEncodingDetection ? true,
rightToLeftTextSupport ? false,
gitUpdater,
}:

python3Packages.buildPythonApplication rec {
pname = "ranger";
version = "1.9.3-unstable-2023-08-23";
version = "1.9.4";

src = fetchFromGitHub {
owner = "ranger";
repo = "ranger";
rev = "38bb8901004b75a407ffee4b9e176bc0a436cb15";
hash = "sha256-NpsrABk95xHNvhlRjKFh326IW83mYj1cmK3aE9JQSRo=";
tag = "v${version}";
hash = "sha256-9ehxMXwQj7oVhlotTc3mzCKCkoMSbB9cliPg/NMEoWM=";
};

LC_ALL = "en_US.UTF-8";
Expand Down Expand Up @@ -67,12 +68,14 @@ python3Packages.buildPythonApplication rec {
--replace "set preview_images false" "set preview_images true"
'';

meta = with lib; {
passthru.updateScript = gitUpdater { rev-prefix = "v"; };

meta = {
description = "File manager with minimalistic curses interface";
homepage = "https://ranger.github.io/";
license = licenses.gpl3Only;
platforms = platforms.unix;
maintainers = with maintainers; [
license = lib.licenses.gpl3Only;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [
toonn
magnetophon
];
Expand Down

0 comments on commit 411d145

Please sign in to comment.