2018-09-27 10:18:30 -07:00
|
|
|
{ stdenv, lib, fetchFromGitHub, python3Packages, file, less, highlight
|
2017-03-31 13:56:00 -07:00
|
|
|
, imagePreviewSupport ? true, w3m ? null}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
assert imagePreviewSupport -> w3m != null;
|
2013-12-11 19:04:38 -08:00
|
|
|
|
2018-06-02 06:12:22 -07:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2018-02-15 09:06:55 -08:00
|
|
|
name = "ranger-${version}";
|
2019-12-31 08:23:50 -08:00
|
|
|
version = "1.9.3";
|
2018-01-28 11:18:53 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ranger";
|
|
|
|
repo = "ranger";
|
|
|
|
rev = "v${version}";
|
2019-12-31 08:23:50 -08:00
|
|
|
sha256= "1rygfryczanvqxn43lmlkgs04sbqznbvbb9hlbm3h5qgdcl0xlw8";
|
2013-12-11 19:04:38 -08:00
|
|
|
};
|
|
|
|
|
2019-01-25 16:15:05 -08:00
|
|
|
LC_ALL = "en_US.UTF-8";
|
|
|
|
|
2018-06-02 06:12:22 -07:00
|
|
|
checkInputs = with python3Packages; [ pytest ];
|
2019-02-05 05:58:09 -08:00
|
|
|
propagatedBuildInputs = [ file ]
|
2019-11-09 16:12:23 -08:00
|
|
|
++ lib.optionals (imagePreviewSupport) [ python3Packages.pillow ];
|
2015-08-18 08:41:23 -07:00
|
|
|
|
2017-02-10 00:40:57 -08:00
|
|
|
checkPhase = ''
|
|
|
|
py.test tests
|
|
|
|
'';
|
|
|
|
|
2015-08-18 08:41:23 -07:00
|
|
|
preConfigure = ''
|
2018-09-27 10:18:30 -07:00
|
|
|
${lib.optionalString (highlight != null) ''
|
|
|
|
sed -i -e 's|^\s*highlight\b|${highlight}/bin/highlight|' \
|
|
|
|
ranger/data/scope.sh
|
|
|
|
''}
|
|
|
|
|
2017-07-01 16:51:40 -07:00
|
|
|
substituteInPlace ranger/data/scope.sh \
|
|
|
|
--replace "/bin/echo" "echo"
|
|
|
|
|
2016-09-28 13:07:45 -07:00
|
|
|
substituteInPlace ranger/__init__.py \
|
|
|
|
--replace "DEFAULT_PAGER = 'less'" "DEFAULT_PAGER = '${stdenv.lib.getBin less}/bin/less'"
|
2015-08-18 08:41:23 -07:00
|
|
|
|
|
|
|
for i in ranger/config/rc.conf doc/config/rc.conf ; do
|
|
|
|
substituteInPlace $i --replace /usr/share $out/share
|
|
|
|
done
|
2017-03-31 13:56:00 -07:00
|
|
|
|
|
|
|
# give file previews out of the box
|
|
|
|
substituteInPlace ranger/config/rc.conf \
|
2018-09-27 10:18:06 -07:00
|
|
|
--replace "#set preview_script ~/.config/ranger/scope.sh" "set preview_script $out/share/doc/ranger/config/scope.sh"
|
2017-03-31 13:56:00 -07:00
|
|
|
'' + 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 11:24:19 -07:00
|
|
|
--replace "set preview_images false" "set preview_images true"
|
2015-08-18 08:41:23 -07:00
|
|
|
'';
|
|
|
|
|
2018-09-27 10:18:30 -07:00
|
|
|
meta = with lib; {
|
2018-01-28 11:18:53 -08:00
|
|
|
description = "File manager with minimalistic curses interface";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://ranger.github.io/";
|
2018-01-28 11:18:53 -08:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.unix;
|
2018-09-10 02:48:49 -07:00
|
|
|
maintainers = [ maintainers.toonn maintainers.magnetophon ];
|
2018-01-28 11:18:53 -08:00
|
|
|
};
|
2013-12-11 19:04:38 -08:00
|
|
|
}
|