nixpkgs/pkgs/by-name/ra/ranger/package.nix

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

63 lines
2.2 KiB
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3Packages, file, less, highlight, w3m, imagemagick
, imagePreviewSupport ? true
, sixelPreviewSupport ? true
, neoVimSupport ? true
, improvedEncodingDetection ? true
, rightToLeftTextSupport ? false
}:
2013-12-12 03:04:38 +00:00
2018-06-02 14:12:22 +01:00
python3Packages.buildPythonApplication rec {
2021-02-12 03:16:32 +00:00
pname = "ranger";
version = "1.9.3-unstable-2023-08-23";
2018-01-28 19:18:53 +00:00
src = fetchFromGitHub {
owner = "ranger";
repo = "ranger";
rev = "38bb8901004b75a407ffee4b9e176bc0a436cb15";
hash = "sha256-NpsrABk95xHNvhlRjKFh326IW83mYj1cmK3aE9JQSRo=";
2013-12-12 03:04:38 +00:00
};
2019-01-26 00:15:05 +00:00
LC_ALL = "en_US.UTF-8";
nativeCheckInputs = with python3Packages; [ pytestCheckHook astroid pylint ];
propagatedBuildInputs = [
less
file
] ++ lib.optionals imagePreviewSupport [ python3Packages.pillow ]
++ lib.optionals sixelPreviewSupport [ imagemagick ]
++ lib.optionals neoVimSupport [ python3Packages.pynvim ]
++ lib.optionals improvedEncodingDetection [ python3Packages.chardet ]
++ lib.optionals rightToLeftTextSupport [ python3Packages.python-bidi ];
preConfigure = ''
${lib.optionalString (highlight != null) ''
sed -i -e 's|^\s*highlight\b|${highlight}/bin/highlight|' \
ranger/data/scope.sh
''}
2016-09-28 21:07:45 +01:00
substituteInPlace ranger/__init__.py \
2021-01-15 05:42:41 +00:00
--replace "DEFAULT_PAGER = 'less'" "DEFAULT_PAGER = '${lib.getBin less}/bin/less'"
# give file previews out of the box
substituteInPlace ranger/config/rc.conf \
--replace /usr/share $out/share \
--replace "#set preview_script ~/.config/ranger/scope.sh" "set preview_script $out/share/doc/ranger/config/scope.sh"
2021-02-12 03:16:32 +00:00
'' + lib.optionalString imagePreviewSupport ''
substituteInPlace ranger/ext/img_display.py \
--replace /usr/lib/w3m ${w3m}/libexec/w3m
# give image previews out of the box when building with w3m
substituteInPlace ranger/config/rc.conf \
2018-08-08 19:24:19 +01:00
--replace "set preview_images false" "set preview_images true"
'';
meta = with lib; {
2018-01-28 19:18:53 +00:00
description = "File manager with minimalistic curses interface";
2021-02-06 19:43:54 +00:00
homepage = "https://ranger.github.io/";
2021-02-12 03:16:32 +00:00
license = licenses.gpl3Only;
2018-01-28 19:18:53 +00:00
platforms = platforms.unix;
2021-02-12 03:16:32 +00:00
maintainers = with maintainers; [ toonn magnetophon ];
mainProgram = "ranger";
2018-01-28 19:18:53 +00:00
};
2013-12-12 03:04:38 +00:00
}