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

21 lines
584 B
Nix
Raw Normal View History

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