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

31 lines
784 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}";
2017-07-02 09:27:20 +01:00
version = "0.9";
src = fetchurl {
2017-07-02 09:27:20 +01:00
url = "https://github.com/vifm/vifm/releases/download/v${version}/vifm-${version}.tar.bz2";
sha256 = "1zd72vcgir3g9rhs2iyca13qf5fc0b1f22y20f5gy92c3sfwj45b";
};
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;
};
}