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

21 lines
584 B
Nix
Raw Normal View History

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