2017-03-31 21:56:00 +01:00
|
|
|
{ stdenv, fetchurl, pythonPackages, file, less
|
|
|
|
, imagePreviewSupport ? true, w3m ? null}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
assert imagePreviewSupport -> w3m != null;
|
2013-12-12 03:04:38 +00:00
|
|
|
|
2016-09-26 10:09:25 +01:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2017-02-28 11:38:43 +00:00
|
|
|
name = "ranger-1.8.1";
|
2013-12-12 03:04:38 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "File manager with minimalistic curses interface";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://ranger.nongnu.org/;
|
2013-12-12 03:04:38 +00:00
|
|
|
license = stdenv.lib.licenses.gpl3;
|
2015-08-26 11:50:19 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2013-12-12 03:04:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
2015-04-14 15:27:13 +01:00
|
|
|
url = "http://ranger.nongnu.org/${name}.tar.gz";
|
2017-02-28 11:38:43 +00:00
|
|
|
sha256 = "1d11qw0mr9aj22a7nhr6p2c3yzf359xbffmjsjblq44bjpwzjcql";
|
2013-12-12 03:04:38 +00:00
|
|
|
};
|
|
|
|
|
2017-02-10 08:40:57 +00:00
|
|
|
checkInputs = with pythonPackages; [ pytest ];
|
2016-10-06 19:34:35 +01:00
|
|
|
propagatedBuildInputs = [ file ];
|
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 = ''
|
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 \
|
|
|
|
--replace "set preview_script ~/.config/ranger/scope.sh" "set preview_script $out/share/doc/ranger/config/scope.sh"
|
|
|
|
'' + 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 \
|
|
|
|
--replace "set preview_images false" "set preview_images true" \
|
2015-08-18 16:41:23 +01:00
|
|
|
'';
|
|
|
|
|
2013-12-12 03:04:38 +00:00
|
|
|
}
|