ranger: 1.8.1 -> 1.9.0
This commit is contained in:
parent
5f57b61f27
commit
0cc73f2524
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, pythonPackages, file, less
|
{ stdenv, fetchFromGitHub, pythonPackages, file, less
|
||||||
, imagePreviewSupport ? true, w3m ? null}:
|
, imagePreviewSupport ? true, w3m ? null}:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
@ -6,18 +6,14 @@ with stdenv.lib;
|
|||||||
assert imagePreviewSupport -> w3m != null;
|
assert imagePreviewSupport -> w3m != null;
|
||||||
|
|
||||||
pythonPackages.buildPythonApplication rec {
|
pythonPackages.buildPythonApplication rec {
|
||||||
name = "ranger-1.8.1";
|
name = "ranger-v${version}";
|
||||||
|
version = "1.9.0";
|
||||||
|
|
||||||
meta = {
|
src = fetchFromGitHub {
|
||||||
description = "File manager with minimalistic curses interface";
|
owner = "ranger";
|
||||||
homepage = http://ranger.nongnu.org/;
|
repo = "ranger";
|
||||||
license = stdenv.lib.licenses.gpl3;
|
rev = "v${version}";
|
||||||
platforms = stdenv.lib.platforms.unix;
|
sha256= "0h3qz0sr21390xdshhlfisvscja33slv1plzcisg1wrdgwgyr5j6";
|
||||||
};
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "http://ranger.nongnu.org/${name}.tar.gz";
|
|
||||||
sha256 = "1d11qw0mr9aj22a7nhr6p2c3yzf359xbffmjsjblq44bjpwzjcql";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = with pythonPackages; [ pytest ];
|
checkInputs = with pythonPackages; [ pytest ];
|
||||||
@ -50,4 +46,11 @@ pythonPackages.buildPythonApplication rec {
|
|||||||
--replace "set preview_images false" "set preview_images true" \
|
--replace "set preview_images false" "set preview_images true" \
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "File manager with minimalistic curses interface";
|
||||||
|
homepage = http://ranger.github.io/;
|
||||||
|
license = licenses.gpl3;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = [ maintainers.magnetophon ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user