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

31 lines
786 B
Nix
Raw Normal View History

2016-06-03 16:09:20 +02:00
{ stdenv, fetchurl
, pkgconfig
, ncurses, libX11
, utillinux, file, which, groff
}:
2016-06-03 16:09:20 +02:00
stdenv.mkDerivation rec {
name = "vifm-${version}";
2018-02-08 22:41:33 +01:00
version = "0.9.1";
src = fetchurl {
2017-07-02 10:27:20 +02:00
url = "https://github.com/vifm/vifm/releases/download/v${version}/vifm-${version}.tar.bz2";
2018-02-08 22:41:33 +01:00
sha256 = "1cz7vjjmghgdxd1lvsdwv85gvx4kz8idq14qijpwkpfrf2va9f98";
};
2016-06-03 16:09:20 +02:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ ncurses libX11 utillinux file which groff ];
2016-06-03 16:09:20 +02:00
meta = with stdenv.lib; {
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;
downloadPage = "https://vifm.info/downloads.shtml";
homepage = https://vifm.info/;
inherit version;
updateWalker = true;
};
}