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

33 lines
711 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}";
2016-07-19 23:15:08 +02:00
version = "0.8.2";
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";
};
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;
};
passthru = {
updateInfo = {
downloadPage = "http://vifm.sf.net";
};
};
}