1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-30 01:20:40 +00:00
nixpkgs/pkgs/applications/misc/vifm/default.nix

31 lines
758 B
Nix
Raw Normal View History

2016-06-03 15:09:20 +01:00
{ stdenv, fetchurl
, pkgconfig
, ncurses, libX11
, utillinux, file, which, groff
}:
2016-06-03 15:09:20 +01:00
stdenv.mkDerivation rec {
name = "vifm-${version}";
2016-07-19 22:15:08 +01:00
version = "0.8.2";
src = fetchurl {
2014-06-01 14:36:45 +01:00
url = "mirror://sourceforge/project/vifm/vifm/${name}.tar.bz2";
2016-07-19 22:15:08 +01:00
sha256 = "07r15kq7kjl3a41sd11ncpsii866xxps4f90zh3lv8jqcrv6silb";
};
2016-06-03 15:09:20 +01:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ ncurses libX11 utillinux file which groff ];
2016-06-03 15:09:20 +01:00
meta = with stdenv.lib; {
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;
downloadPage = "http://vifm.info/downloads.shtml";
homepage = "http://vifm.info/";
inherit version;
updateWalker = true;
};
}