Merge pull request #193761 from figsoda/felix

felix-fm: init at 1.2.0
This commit is contained in:
figsoda 2022-10-02 11:19:30 -04:00 committed by GitHub
commit b765de8e6b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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.2.0";
src = fetchFromGitHub {
owner = "kyoheiu";
repo = pname;
rev = "v${version}";
sha256 = "sha256-7WeikYd/mADsp9DQ0jelhuZo5ZiyJrHG9HBg/YLpjZY=";
};
cargoSha256 = "sha256-IUiyDk+TRfODXQ+45ARcFximkLVk32pqvJfn23H0kAw=";
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;
};