felix-fm 2.2.2 -> 2.2.3 https://github.com/kyoheiu/felix/releases attrpath: felix-fm Checking auto update branch... No auto update branch exists Old version 2.2.2" not present in master derivation file with contents: { lib , rustPlatform , fetchFromGitHub , pkg-config , bzip2 , zstd , zoxide }: rustPlatform.buildRustPackage rec { pname = "felix"; version = "2.2.3"; src = fetchFromGitHub { owner = "kyoheiu"; repo = pname; rev = "v${version}"; sha256 = "sha256-VQTZj2BCdV2TnXrYRaJqrf9sR35zsojmeoe7t+I3kyQ="; }; cargoSha256 = "sha256-jH2BaPiGanBOlOU7JQZ0c0ObCaVURpjvmx2m92Fbdm4="; nativeBuildInputs = [ pkg-config ]; buildInputs = [ bzip2 zstd ]; checkInputs = [ zoxide ]; buildFeatures = [ "zstd/pkg-config" ]; checkFlags = [ # extra test files not shipped with the repository "--skip=functions::tests::test_list_up_contents" "--skip=magic_image::tests::test_inspect_image" "--skip=magic_packed::tests::test_inspect_signature" ]; 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"; }; }