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

65 lines
1.9 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, python3Packages, file, less, highlight
, 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 {
name = "ranger-${version}";
2019-12-31 16:23:50 +00:00
version = "1.9.3";
2018-01-28 19:18:53 +00:00
src = fetchFromGitHub {
owner = "ranger";
repo = "ranger";
rev = "v${version}";
2019-12-31 16:23:50 +00:00
sha256= "1rygfryczanvqxn43lmlkgs04sbqznbvbb9hlbm3h5qgdcl0xlw8";
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 13:12:22 +00:00
checkInputs = with python3Packages; [ pytest ];
propagatedBuildInputs = [ file ]
2019-11-10 00:12:23 +00:00
++ lib.optionals (imagePreviewSupport) [ python3Packages.pillow ];
2017-02-10 08:40:57 +00:00
checkPhase = ''
py.test tests
'';
preConfigure = ''
${lib.optionalString (highlight != null) ''
sed -i -e 's|^\s*highlight\b|${highlight}/bin/highlight|' \
ranger/data/scope.sh
''}
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'"
for i in ranger/config/rc.conf doc/config/rc.conf ; do
substituteInPlace $i --replace /usr/share $out/share
done
# 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 \
2018-08-08 18:24:19 +00:00
--replace "set preview_images false" "set preview_images true"
'';
meta = with lib; {
2018-01-28 19:18:53 +00:00
description = "File manager with minimalistic curses interface";
homepage = "http://ranger.github.io/";
2018-01-28 19:18:53 +00:00
license = licenses.gpl3;
platforms = platforms.unix;
maintainers = [ maintainers.toonn maintainers.magnetophon ];
2018-01-28 19:18:53 +00:00
};
2013-12-12 03:04:38 +00:00
}