2016-02-19 12:12:11 +00:00
|
|
|
{ stdenv, fetchurl, buildPythonApplication, python, w3m, file }:
|
2013-12-12 03:04:38 +00:00
|
|
|
|
2016-02-19 12:12:11 +00:00
|
|
|
buildPythonApplication rec {
|
2016-01-29 16:45:46 +00:00
|
|
|
name = "ranger-1.7.2";
|
2013-12-12 03:04:38 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "File manager with minimalistic curses interface";
|
|
|
|
homepage = "http://ranger.nongnu.org/";
|
|
|
|
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";
|
2016-01-29 16:45:46 +00:00
|
|
|
sha256 = "0yaviybviwdvfg2a0pf2kk28g10k245499xmbpqlai7fv91f7xll";
|
2013-12-12 03:04:38 +00:00
|
|
|
};
|
|
|
|
|
2016-01-11 07:18:28 +00:00
|
|
|
propagatedBuildInputs = [ python.modules.curses file ];
|
2015-08-18 16:41:23 +01:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace ranger/ext/img_display.py \
|
|
|
|
--replace /usr/lib/w3m ${w3m}/libexec/w3m
|
|
|
|
|
|
|
|
for i in ranger/config/rc.conf doc/config/rc.conf ; do
|
|
|
|
substituteInPlace $i --replace /usr/share $out/share
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2013-12-12 03:04:38 +00:00
|
|
|
}
|