2016-06-03 16:09:20 +02:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, pkgconfig
|
|
|
|
, ncurses, libX11
|
|
|
|
, utillinux, file, which, groff
|
|
|
|
}:
|
2011-08-10 21:16:27 +02:00
|
|
|
|
2016-06-03 16:09:20 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2013-08-10 02:32:21 +02:00
|
|
|
name = "vifm-${version}";
|
2016-07-19 23:15:08 +02:00
|
|
|
version = "0.8.2";
|
2013-08-10 02:32:21 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-06-01 15:36:45 +02:00
|
|
|
url = "mirror://sourceforge/project/vifm/vifm/${name}.tar.bz2";
|
2016-07-19 23:15:08 +02:00
|
|
|
sha256 = "07r15kq7kjl3a41sd11ncpsii866xxps4f90zh3lv8jqcrv6silb";
|
2011-08-10 21:16:27 +02:00
|
|
|
};
|
|
|
|
|
2016-06-03 16:09:20 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ ncurses libX11 utillinux file which groff ];
|
2011-08-10 21:16:27 +02:00
|
|
|
|
2016-06-03 16:09:20 +02:00
|
|
|
meta = with stdenv.lib; {
|
2011-08-10 21:16:27 +02:00
|
|
|
description = "A vi-like file manager";
|
2016-06-03 16:09:20 +02:00
|
|
|
maintainers = with maintainers; [ raskin garbas ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2;
|
2011-08-10 21:16:27 +02:00
|
|
|
};
|
2013-08-10 02:32:21 +02:00
|
|
|
|
2011-08-10 21:16:27 +02:00
|
|
|
passthru = {
|
|
|
|
updateInfo = {
|
|
|
|
downloadPage = "http://vifm.sf.net";
|
|
|
|
};
|
|
|
|
};
|
2013-08-10 02:32:21 +02:00
|
|
|
}
|
2011-08-10 21:16:27 +02:00
|
|
|
|