felix-fm 2.11.1 -> 2.12.0 https://repology.org/project/felix-file-manager/versions attrpath: felix-fm Checking auto update branch... No auto update branch exists Old version 2.11.1" not present in master derivation file with contents: { lib , rustPlatform , fetchFromGitHub , pkg-config , bzip2 , libgit2 , zlib , zstd , zoxide }: rustPlatform.buildRustPackage rec { pname = "felix"; version = "2.12.0"; src = fetchFromGitHub { owner = "kyoheiu"; repo = "felix"; rev = "v${version}"; hash = "sha256-pFU1gE1dkW2MmnkS9DWV0GcPTnDPbjd8w8ASy0M+3x4="; }; cargoHash = "sha256-nzbgTEl6vVT30xSrMVa4FkIHv5lzeNB5ayBZn4xPxA4="; nativeBuildInputs = [ pkg-config ]; buildInputs = [ bzip2 libgit2 zlib zstd ]; nativeCheckInputs = [ zoxide ]; env = { ZSTD_SYS_USE_PKG_CONFIG = true; }; buildFeatures = [ "zstd/pkg-config" ]; checkFlags = [ # extra test files not shipped with the repository "--skip=functions::tests::test_list_up_contents" "--skip=state::tests::test_has_write_permission" ]; meta = with lib; { description = "A tui file manager with vim-like key mapping"; homepage = "https://github.com/kyoheiu/felix"; changelog = "https://github.com/kyoheiu/felix/blob/v${version}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ figsoda ]; mainProgram = "fx"; }; }