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

45 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, makeWrapper
2016-06-03 14:09:20 +00:00
, pkgconfig
, ncurses, libX11
, utillinux, file, which, groff
# adds support for handling removable media (vifm-media). Linux only!
2020-09-27 02:33:03 +00:00
, mediaSupport ? false, python3 ? null, udisks2 ? null, lib ? null
2016-06-03 14:09:20 +00:00
}:
let isFullPackage = mediaSupport;
in stdenv.mkDerivation rec {
pname = if isFullPackage then "vifm-full" else "vifm";
2020-09-27 02:33:03 +00:00
version = "0.11";
src = fetchurl {
2017-07-02 08:27:20 +00:00
url = "https://github.com/vifm/vifm/releases/download/v${version}/vifm-${version}.tar.bz2";
2020-09-27 02:33:03 +00:00
sha256 = "0rqyd424y0g5b5basw2ybb60r9gar4f40d1xgzr3c2dsy4jpwvyh";
};
nativeBuildInputs = [ pkgconfig makeWrapper ];
2016-06-03 14:09:20 +00:00
buildInputs = [ ncurses libX11 utillinux file which groff ];
postFixup = let
2020-09-27 02:33:03 +00:00
path = lib.makeBinPath
[ udisks2
(python3.withPackages (p: [p.dbus-python]))
];
wrapVifmMedia = "wrapProgram $out/share/vifm/vifm-media --prefix PATH : ${path}";
in ''
${if mediaSupport then wrapVifmMedia else ""}
'';
2016-06-03 14:09:20 +00:00
meta = with stdenv.lib; {
description = ''A vi-like file manager${if isFullPackage then "; Includes support for optional features" else ""}'';
maintainers = with maintainers; [ raskin ];
platforms = if mediaSupport then platforms.linux else platforms.unix;
2016-06-03 14:09:20 +00:00
license = licenses.gpl2;
downloadPage = "https://vifm.info/downloads.shtml";
homepage = "https://vifm.info/";
inherit version;
updateWalker = true;
};
}