2016-06-03 15:09:20 +01:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, pkgconfig
|
|
|
|
, ncurses, libX11
|
|
|
|
, utillinux, file, which, groff
|
|
|
|
}:
|
2011-08-10 20:16:27 +01:00
|
|
|
|
2016-06-03 15:09:20 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2013-08-10 01:32:21 +01:00
|
|
|
name = "vifm-${version}";
|
2018-11-18 06:35:57 +00:00
|
|
|
version = "0.10";
|
2013-08-10 01:32:21 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-07-02 09:27:20 +01:00
|
|
|
url = "https://github.com/vifm/vifm/releases/download/v${version}/vifm-${version}.tar.bz2";
|
2018-11-18 06:35:57 +00:00
|
|
|
sha256 = "1f380xcyjnm4xmcdazs6dj064bwddhywvn3mgm36k7r7b2gnjnp0";
|
2011-08-10 20:16:27 +01:00
|
|
|
};
|
|
|
|
|
2016-06-03 15:09:20 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ ncurses libX11 utillinux file which groff ];
|
2011-08-10 20:16:27 +01:00
|
|
|
|
2016-06-03 15:09:20 +01:00
|
|
|
meta = with stdenv.lib; {
|
2011-08-10 20:16:27 +01:00
|
|
|
description = "A vi-like file manager";
|
2016-06-03 15:09:20 +01:00
|
|
|
maintainers = with maintainers; [ raskin garbas ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2;
|
2018-01-05 19:42:46 +00:00
|
|
|
downloadPage = "https://vifm.info/downloads.shtml";
|
|
|
|
homepage = https://vifm.info/;
|
2016-10-04 09:07:46 +01:00
|
|
|
inherit version;
|
|
|
|
updateWalker = true;
|
2011-08-10 20:16:27 +01:00
|
|
|
};
|
2013-08-10 01:32:21 +01:00
|
|
|
}
|
2011-08-10 20:16:27 +01:00
|
|
|
|