summary refs log tree commit diff
path: root/pkgs/applications/misc/ranger/default.nix
blob: cc8bd42ec39fe12cfcd90df1a148e76c2a33f9d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, python, fetchurl }:

buildPythonPackage rec {
  name = "ranger-1.7.0";

  meta = {
    description = "File manager with minimalistic curses interface";
    homepage = "http://ranger.nongnu.org/";
    license = stdenv.lib.licenses.gpl3;
    platforms = stdenv.lib.platforms.linux;
    maintainers = with stdenv.lib.maintainers; [ iyzsong ];
  };

  src = fetchurl {
    url = "http://ranger.nongnu.org/${name}.tar.gz";
    sha256 = "066lp1k2zcz2lnww2aj0m3fgn9g5ms67kxgclhgq66pxkjwgc4kx";
  };

  propagatedBuildInputs = with python.modules; [ curses ];
}