nixpkgs/pkgs/applications/misc/ranger/default.nix

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

60 lines
2.0 KiB
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3Packages, file, less, highlight, w3m
, imagePreviewSupport ? 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";
2019-12-31 16:23:50 +00:00
version = "1.9.3";
2018-01-28 19:18:53 +00:00
src = fetchFromGitHub {
owner = "ranger";
repo = "ranger";
rev = "v${version}";
2019-12-31 16:23:50 +00:00
sha256= "1rygfryczanvqxn43lmlkgs04sbqznbvbb9hlbm3h5qgdcl0xlw8";
2013-12-12 03:04:38 +00:00
};
2019-01-26 00:15:05 +00:00
LC_ALL = "en_US.UTF-8";
2021-02-12 03:16:32 +00:00
checkInputs = with python3Packages; [ pytestCheckHook ];
propagatedBuildInputs = [
less
file
] ++ lib.optionals imagePreviewSupport [ python3Packages.pillow ]
++ 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 ];
2018-01-28 19:18:53 +00:00
};
2013-12-12 03:04:38 +00:00
}