3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/ranger/default.nix

31 lines
842 B
Nix
Raw Normal View History

{ stdenv, fetchurl, buildPythonPackage, python, w3m }:
2013-12-12 03:04:38 +00:00
2015-04-14 15:27:13 +01:00
buildPythonPackage rec {
2015-05-09 11:52:25 +01:00
name = "ranger-1.7.1";
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;
platforms = stdenv.lib.platforms.unix;
2013-12-12 03:04:38 +00:00
maintainers = with stdenv.lib.maintainers; [ iyzsong ];
};
src = fetchurl {
2015-04-14 15:27:13 +01:00
url = "http://ranger.nongnu.org/${name}.tar.gz";
2015-05-09 11:52:25 +01:00
sha256 = "11nznx2lqv884q9d2if63101prgnjlnan8pcwy550hji2qsn3c7q";
2013-12-12 03:04:38 +00:00
};
propagatedBuildInputs = with python.modules; [ curses ];
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
}