mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
44 lines
1.4 KiB
Nix
44 lines
1.4 KiB
Nix
{ stdenv, fetchurl, makeWrapper
|
|
, pkg-config
|
|
, ncurses, libX11
|
|
, util-linux, file, which, groff
|
|
|
|
# adds support for handling removable media (vifm-media). Linux only!
|
|
, mediaSupport ? false, python3 ? null, udisks2 ? null, lib ? null
|
|
}:
|
|
|
|
let isFullPackage = mediaSupport;
|
|
in stdenv.mkDerivation rec {
|
|
pname = if isFullPackage then "vifm-full" else "vifm";
|
|
version = "0.12";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/vifm/vifm/releases/download/v${version}/vifm-${version}.tar.bz2";
|
|
sha256 = "1h5j4y704nciyzg3aaav8sl3r5h9mpwq8f28cj65nnxk6a7n3a9k";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config makeWrapper ];
|
|
buildInputs = [ ncurses libX11 util-linux file which groff ];
|
|
|
|
postFixup = let
|
|
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 ""}
|
|
'';
|
|
|
|
meta = with 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;
|
|
license = licenses.gpl2;
|
|
downloadPage = "https://vifm.info/downloads.shtml";
|
|
homepage = "https://vifm.info/";
|
|
changelog = "https://github.com/vifm/vifm/blob/v${version}/ChangeLog";
|
|
};
|
|
}
|