Merge pull request #27028 from magnetophon/ranger

ranger: fix absolute paths in scope.sh
This commit is contained in:
Jörg Thalheim 2017-07-02 00:59:36 +01:00 committed by GitHub
commit d2d62e43a0

View file

@ -28,6 +28,9 @@ pythonPackages.buildPythonApplication rec {
'';
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'"