1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-26 07:31:20 +00:00
nixpkgs/pkgs/applications/misc/ranger/default.nix

57 lines
1.7 KiB
Nix
Raw Normal View History

2018-01-28 19:18:53 +00:00
{ stdenv, fetchFromGitHub, pythonPackages, file, less
, imagePreviewSupport ? true, w3m ? null}:
with stdenv.lib;
assert imagePreviewSupport -> w3m != null;
2013-12-12 03:04:38 +00:00
pythonPackages.buildPythonApplication rec {
2018-01-28 19:18:53 +00:00
name = "ranger-v${version}";
version = "1.9.0";
src = fetchFromGitHub {
owner = "ranger";
repo = "ranger";
rev = "v${version}";
sha256= "0h3qz0sr21390xdshhlfisvscja33slv1plzcisg1wrdgwgyr5j6";
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 ];
2017-02-10 08:40:57 +00:00
checkPhase = ''
py.test tests
'';
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'"
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 \
--replace "set preview_images false" "set preview_images true" \
'';
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;
maintainers = [ maintainers.magnetophon ];
};
2013-12-12 03:04:38 +00:00
}