2022-12-03T05:03:13 felix-fm 2.1.0 -> 2.1.1 https://github.com/kyoheiu/felix/releases 2022-12-03T05:03:15 attrpath: felix-fm 2022-12-03T05:03:15 Checking auto update branch... 2022-12-03T05:03:15 No auto update branch exists 2022-12-03T05:03:16 Old version 2.1.0" not present in master derivation file with contents: { lib , rustPlatform , fetchFromGitHub , pkg-config , bzip2 , zstd , zoxide }: rustPlatform.buildRustPackage rec { pname = "felix"; version = "2.1.1"; src = fetchFromGitHub { owner = "kyoheiu"; repo = pname; rev = "v${version}"; sha256 = "sha256-0wYYElXm7Nr1zjtWLSdBaUVsb+2CN4TwaJr5g1juUUs="; }; cargoSha256 = "sha256-SnXZkMrAhhP8lVFCd6LKHFSg9o2K1Wy+z/4oUZOHoXw="; 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"; }; }