nixpkgs/pkgs/applications/misc/ranger/default.nix
Ryan Mulligan a923865595 ranger: 1.9.0 -> 1.9.1
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/q53safw1076ynmqdx4zkh1707d7swz9s-ranger-1.9.1/bin/.ranger-wrapped -h` got 0 exit code
- ran `/nix/store/q53safw1076ynmqdx4zkh1707d7swz9s-ranger-1.9.1/bin/.ranger-wrapped --help` got 0 exit code
- ran `/nix/store/q53safw1076ynmqdx4zkh1707d7swz9s-ranger-1.9.1/bin/.ranger-wrapped --version` and found version 1.9.1
- ran `/nix/store/q53safw1076ynmqdx4zkh1707d7swz9s-ranger-1.9.1/bin/ranger -h` got 0 exit code
- ran `/nix/store/q53safw1076ynmqdx4zkh1707d7swz9s-ranger-1.9.1/bin/ranger --help` got 0 exit code
- ran `/nix/store/q53safw1076ynmqdx4zkh1707d7swz9s-ranger-1.9.1/bin/ranger --version` and found version 1.9.1
- ran `/nix/store/q53safw1076ynmqdx4zkh1707d7swz9s-ranger-1.9.1/bin/.rifle-wrapped -h` got 0 exit code
- ran `/nix/store/q53safw1076ynmqdx4zkh1707d7swz9s-ranger-1.9.1/bin/.rifle-wrapped --help` got 0 exit code
- ran `/nix/store/q53safw1076ynmqdx4zkh1707d7swz9s-ranger-1.9.1/bin/.rifle-wrapped --version` and found version 1.9.1
- ran `/nix/store/q53safw1076ynmqdx4zkh1707d7swz9s-ranger-1.9.1/bin/rifle -h` got 0 exit code
- ran `/nix/store/q53safw1076ynmqdx4zkh1707d7swz9s-ranger-1.9.1/bin/rifle --help` got 0 exit code
- ran `/nix/store/q53safw1076ynmqdx4zkh1707d7swz9s-ranger-1.9.1/bin/rifle help` got 0 exit code
- ran `/nix/store/q53safw1076ynmqdx4zkh1707d7swz9s-ranger-1.9.1/bin/rifle --version` and found version 1.9.1
- found 1.9.1 with grep in /nix/store/q53safw1076ynmqdx4zkh1707d7swz9s-ranger-1.9.1
- found 1.9.1 in filename of file in /nix/store/q53safw1076ynmqdx4zkh1707d7swz9s-ranger-1.9.1

cc "@magnetophon"
2018-02-27 13:02:29 -08:00

57 lines
1.7 KiB
Nix

{ stdenv, fetchFromGitHub, pythonPackages, file, less
, imagePreviewSupport ? true, w3m ? null}:
with stdenv.lib;
assert imagePreviewSupport -> w3m != null;
pythonPackages.buildPythonApplication rec {
name = "ranger-${version}";
version = "1.9.1";
src = fetchFromGitHub {
owner = "ranger";
repo = "ranger";
rev = "v${version}";
sha256= "1zhds37j1scxa9b183qbrjwxqldrdk581c5xiy81vg17sndb1kqj";
};
checkInputs = with pythonPackages; [ pytest ];
propagatedBuildInputs = [ file ];
checkPhase = ''
py.test tests
'';
preConfigure = ''
substituteInPlace ranger/data/scope.sh \
--replace "/bin/echo" "echo"
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" \
'';
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 ];
};
}