mediaelch-qt6 2.10.2 -> 2.10.4 https://github.com/Komet/MediaElch/releases attrpath: mediaelch-qt6 Checking auto update branch... No auto update branch exists Old version 2.10.2" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , fetchpatch , cmake , qttools , wrapQtAppsHook , curl , ffmpeg , libmediainfo , libzen , qt5compat ? null # qt6 only , qtbase , qtdeclarative , qtmultimedia , qtsvg , qtwayland , quazip }: let qtVersion = lib.versions.major qtbase.version; in stdenv.mkDerivation rec { pname = "mediaelch"; version = "2.10.4"; src = fetchFromGitHub { owner = "Komet"; repo = "MediaElch"; rev = "v${version}"; hash = "sha256-gNpnmyUKDXf40+1JmJzNyEPIv/DO8b3CdJAphheEvTU="; fetchSubmodules = true; }; nativeBuildInputs = [ cmake qttools wrapQtAppsHook ]; buildInputs = [ curl ffmpeg libmediainfo libzen qtbase qtdeclarative qtmultimedia qtsvg qtwayland quazip ] ++ lib.optionals (qtVersion == "6") [ qt5compat ]; cmakeFlags = [ "-DDISABLE_UPDATER=ON" "-DUSE_EXTERN_QUAZIP=ON" "-DMEDIAELCH_FORCE_QT${qtVersion}=ON" ]; # libmediainfo.so.0 is loaded dynamically qtWrapperArgs = [ "--prefix LD_LIBRARY_PATH : ${libmediainfo}/lib" ]; meta = with lib; { homepage = "https://mediaelch.de/mediaelch/"; description = "Media Manager for Kodi"; license = licenses.lgpl3Only; maintainers = with maintainers; [ stunkymonkey ]; platforms = platforms.linux; }; }