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

31 lines
769 B
Nix
Raw Normal View History

2016-06-03 14:09:20 +00:00
{ stdenv, fetchurl
, pkgconfig
, ncurses, libX11
, utillinux, file, which, groff
}:
2016-06-03 14:09:20 +00:00
stdenv.mkDerivation rec {
2019-08-06 09:31:06 +00:00
pname = "vifm";
version = "0.10.1";
src = fetchurl {
2017-07-02 08:27:20 +00:00
url = "https://github.com/vifm/vifm/releases/download/v${version}/vifm-${version}.tar.bz2";
sha256 = "0fyhxh7ndjn8fyjhj14ymkr3pjcs3k1xbs43g7xvvq85vdb6y04r";
};
2016-06-03 14:09:20 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ ncurses libX11 utillinux file which groff ];
2016-06-03 14:09:20 +00:00
meta = with stdenv.lib; {
description = "A vi-like file manager";
maintainers = with maintainers; [ raskin ];
2019-02-28 04:06:34 +00:00
platforms = platforms.unix;
2016-06-03 14:09:20 +00:00
license = licenses.gpl2;
downloadPage = "https://vifm.info/downloads.shtml";
homepage = https://vifm.info/;
inherit version;
updateWalker = true;
};
}