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

21 lines
584 B
Nix
Raw Normal View History

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