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

32 lines
917 B
Nix
Raw Normal View History

2016-09-28 22:07:45 +02:00
{ stdenv, fetchurl, pythonPackages, w3m, file, less }:
2013-12-12 04:04:38 +01:00
pythonPackages.buildPythonApplication rec {
2016-12-28 23:47:39 +01:00
name = "ranger-1.8.0";
2013-12-12 04:04:38 +01:00
meta = {
description = "File manager with minimalistic curses interface";
homepage = "http://ranger.nongnu.org/";
license = stdenv.lib.licenses.gpl3;
platforms = stdenv.lib.platforms.unix;
2013-12-12 04:04:38 +01:00
};
src = fetchurl {
2015-04-14 16:27:13 +02:00
url = "http://ranger.nongnu.org/${name}.tar.gz";
2016-12-28 23:47:39 +01:00
sha256 = "14j067n1azk6vc6cxlhi5w5bsn2wcz4hypvgxc0vjl9xp5n4f0nf";
2013-12-12 04:04:38 +01:00
};
2016-10-06 20:34:35 +02:00
propagatedBuildInputs = [ file ];
preConfigure = ''
substituteInPlace ranger/ext/img_display.py \
--replace /usr/lib/w3m ${w3m}/libexec/w3m
2016-09-28 22:07:45 +02: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
'';
2013-12-12 04:04:38 +01:00
}