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