felix-fm: init at 1.1.2

This commit is contained in:
figsoda 2022-09-30 16:12:02 -04:00
parent 9a97e910d3
commit ff9628bea6
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib, rustPlatform, fetchFromGitHub, zoxide }:
rustPlatform.buildRustPackage rec {
pname = "felix";
version = "1.1.2";
src = fetchFromGitHub {
owner = "kyoheiu";
repo = pname;
rev = "v${version}";
sha256 = "180f2crd134rp3r2333nhc78nzf1n6jryfc7n2qb6ckfkrkzb7zi";
};
cargoSha256 = "sha256-VDIk0xb/p1eqxFFYTFdSnkSuHLnTcVh5tGBuCUj0dnw=";
checkInputs = [ zoxide ];
meta = with lib; {
description = "A tui file manager with vim-like key mapping";
homepage = "https://github.com/kyoheiu/felix";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
mainProgram = "fx";
};
}

View File

@ -1747,6 +1747,8 @@ with pkgs;
inherit (qt5) wrapQtAppsHook;
};
felix-fm = callPackage ../applications/file-managers/felix-fm { };
joshuto = callPackage ../applications/file-managers/joshuto {
inherit (darwin.apple_sdk.frameworks) SystemConfiguration Foundation;
};