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