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

33 lines
711 B
Nix
Raw Normal View History

2016-06-03 07:09:20 -07:00
{ stdenv, fetchurl
, pkgconfig
, ncurses, libX11
, utillinux, file, which, groff
}:
2016-06-03 07:09:20 -07:00
stdenv.mkDerivation rec {
name = "vifm-${version}";
2016-05-30 11:36:23 -07:00
version = "0.8.1";
src = fetchurl {
2014-06-01 06:36:45 -07:00
url = "mirror://sourceforge/project/vifm/vifm/${name}.tar.bz2";
2016-05-30 11:36:23 -07:00
sha256 = "0yf3xc4czdrcbvmhq7d4xkck5phrmxwybmnv1zdb56qg56baq64r";
};
2016-06-03 07:09:20 -07:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ ncurses libX11 utillinux file which groff ];
2016-06-03 07:09:20 -07:00
meta = with stdenv.lib; {
description = "A vi-like file manager";
2016-06-03 07:09:20 -07:00
maintainers = with maintainers; [ raskin garbas ];
platforms = platforms.linux;
license = licenses.gpl2;
};
passthru = {
updateInfo = {
downloadPage = "http://vifm.sf.net";
};
};
}