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

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

51 lines
1.7 KiB
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3Packages, file, less, highlight
2021-02-12 04:16:32 +01:00
, imagePreviewSupport ? true, w3m }:
2013-12-12 04:04:38 +01:00
2018-06-02 15:12:22 +02:00
python3Packages.buildPythonApplication rec {
2021-02-12 04:16:32 +01:00
pname = "ranger";
2019-12-31 17:23:50 +01:00
version = "1.9.3";
2018-01-28 20:18:53 +01:00
src = fetchFromGitHub {
owner = "ranger";
repo = "ranger";
rev = "v${version}";
2019-12-31 17:23:50 +01:00
sha256= "1rygfryczanvqxn43lmlkgs04sbqznbvbb9hlbm3h5qgdcl0xlw8";
2013-12-12 04:04:38 +01:00
};
2019-01-26 01:15:05 +01:00
LC_ALL = "en_US.UTF-8";
2021-02-12 04:16:32 +01:00
checkInputs = with python3Packages; [ pytestCheckHook ];
propagatedBuildInputs = [ file ]
2019-11-10 01:12:23 +01:00
++ lib.optionals (imagePreviewSupport) [ python3Packages.pillow ];
preConfigure = ''
${lib.optionalString (highlight != null) ''
sed -i -e 's|^\s*highlight\b|${highlight}/bin/highlight|' \
ranger/data/scope.sh
''}
2016-09-28 22:07:45 +02:00
substituteInPlace ranger/__init__.py \
2021-01-15 06:42:41 +01: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 04:16:32 +01: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 20:24:19 +02:00
--replace "set preview_images false" "set preview_images true"
'';
meta = with lib; {
2018-01-28 20:18:53 +01:00
description = "File manager with minimalistic curses interface";
2021-02-06 20:43:54 +01:00
homepage = "https://ranger.github.io/";
2021-02-12 04:16:32 +01:00
license = licenses.gpl3Only;
2018-01-28 20:18:53 +01:00
platforms = platforms.unix;
2021-02-12 04:16:32 +01:00
maintainers = with maintainers; [ toonn magnetophon ];
2018-01-28 20:18:53 +01:00
};
2013-12-12 04:04:38 +01:00
}